fix incorrect comment, math is hard - dmenu - dynamic menu
  HTML git clone git://git.suckless.org/dmenu
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit fe5d5c6709a77ac5d554e26dda76a67df68618ae
   DIR parent e1e1de7b3b8399cba90ddca9613f837b2dbef7b9
  HTML Author: Hiltjo Posthuma <hiltjo@codemadness.org>
       Date:   Sat, 30 Apr 2022 13:19:33 +0200
       
       fix incorrect comment, math is hard
       
       Diffstat:
         M dmenu.c                             |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/dmenu.c b/dmenu.c
       @@ -673,7 +673,7 @@ setup(void)
                        mw = wa.width;
                }
                promptw = (prompt && *prompt) ? TEXTW(prompt) - lrpad / 4 : 0;
       -        inputw = mw / 3; /* input width: ~30% of monitor width */
       +        inputw = mw / 3; /* input width: ~33% of monitor width */
                match();
        
                /* create menu window */