fix typo in comment
authorDenis Vlasenko <vda.linux@googlemail.com>
Wed, 11 Apr 2007 07:36:31 +0000 (07:36 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Wed, 11 Apr 2007 07:36:31 +0000 (07:36 -0000)
include/busybox.h

index 290ad17f26afa133ca3c24f68f685d9b8486e55d..8b3647f57c593a9c342da19b9a6b266c7221d51e 100644 (file)
@@ -38,11 +38,11 @@ struct bb_applet {
        __extension__ enum bb_suid_t need_suid:8;
 #endif
 #if ENABLE_FEATURE_PREFER_APPLETS
-       /* true if instead if fork(); exec("applet"); waitpid();
+       /* true if instead of fork(); exec("applet"); waitpid();
         * one can do fork(); exit(applet_main(argc,argv)); waitpid(); */
        unsigned char noexec;
        /* Even nicer */
-       /* true if instead if fork(); exec("applet"); waitpid();
+       /* true if instead of fork(); exec("applet"); waitpid();
         * one can simply call applet_main(argc,argv); */
        unsigned char nofork;
 #endif