dynconfig/wscript: typo fixes
authorBjörn Jacke <bj@sernet.de>
Sat, 26 Oct 2019 00:41:09 +0000 (02:41 +0200)
committerBjoern Jacke <bjacke@samba.org>
Thu, 31 Oct 2019 00:43:36 +0000 (00:43 +0000)
Signed-off-by: Bjoern Jacke <bjacke@samba.org>
Reviewed-by: Martin Schwenke <martin@meltin.net>
dynconfig/wscript

index 5a0ce6d956aceb1018aacd50e61753a59cf09458..440ecd7f1b4a547b6e61165d1a4093cea07b7768 100644 (file)
@@ -66,12 +66,12 @@ class SambaIndentedHelpFormatter (optparse.IndentedHelpFormatter):
 # 'OPTION'    - the configure option to overwrite the default (optional)
 # 'HELPTEXT'  - the help text of the configure option (optional)
 #
-# 'OVERWRITE' - The option referrs to itself and was already from
+# 'OVERWRITE' - The option refers to itself and was already from
 #               the basic GNU options from the gnu_dirs tool.
 #               We may overwrite the related path. (Default: False)
 #
-# 'DELAY'     - The option referrs to other options in the dynconfig list.
-#               We delay the intialization into a later stage. This
+# 'DELAY'     - The option refers to other options in the dynconfig list.
+#               We delay the initalization into a later stage. This
 #               makes sure the recursion works. (Default: False)
 #
 dynconfig = {
@@ -341,7 +341,7 @@ def configure(conf):
     # defaults stage 1 after the explicit block
     for varname in dynconfig.keys():
         if 'DELAY' in dynconfig[varname] and dynconfig[varname]['DELAY']:
-            # this option referrs to other options,
+            # this option refers to other options,
             # so it needs to wait for stage 2.
             continue
         value = EXPAND_VARIABLES(conf, dyn_vars[varname])
@@ -361,7 +361,7 @@ def configure(conf):
             # only overwrite if not specified explicitly on the command line
             conf.env[varname] = value
 
-    # display the expanded pathes for the user
+    # display the expanded paths for the user
     for varname in dynconfig.keys():
         value = conf.env[varname]
         conf.start_msg("Dynconfig[%s]: " % (varname))