Browse Source

[master] fix typos in some comments, docs, and bindctl descriptions

Jeremy C. Reed 14 years ago
parent
commit
9136696612
2 changed files with 4 additions and 4 deletions
  1. 2 2
      src/bin/bindctl/bindctl-source.py.in
  2. 2 2
      src/bin/bindctl/cmdparse.py

+ 2 - 2
src/bin/bindctl/bindctl-source.py.in

@@ -33,13 +33,13 @@ isc.util.process.rename()
 # number, and the overall BIND 10 version number (set in configure.ac).
 # number, and the overall BIND 10 version number (set in configure.ac).
 VERSION = "bindctl 20101201 (BIND 10 @PACKAGE_VERSION@)"
 VERSION = "bindctl 20101201 (BIND 10 @PACKAGE_VERSION@)"
 
 
-DEFAULT_IDENTIFIER_DESC = "The identifier specifiec the config item. Child elements are separated with the '/' character. List indices can be specified with '[i]', where i is an integer specifying the index, starting with 0. Examples: 'Boss/start_auth', 'Recurse/listen_on[0]/address'. If no identifier is given, shows the item at the current location."
+DEFAULT_IDENTIFIER_DESC = "The identifier specifies the config item. Child elements are separated with the '/' character. List indices can be specified with '[i]', where i is an integer specifying the index, starting with 0. Examples: 'Boss/start_auth', 'Recurse/listen_on[0]/address'. If no identifier is given, shows the item at the current location."
 
 
 def prepare_config_commands(tool):
 def prepare_config_commands(tool):
     '''Prepare fixed commands for local configuration editing'''
     '''Prepare fixed commands for local configuration editing'''
     module = ModuleInfo(name = CONFIG_MODULE_NAME, desc = "Configuration commands")
     module = ModuleInfo(name = CONFIG_MODULE_NAME, desc = "Configuration commands")
     cmd = CommandInfo(name = "show", desc = "Show configuration")
     cmd = CommandInfo(name = "show", desc = "Show configuration")
-    param = ParamInfo(name = "argument", type = "string", optional=True, desc = "If you specify the argument 'all' (before the identifier), recursively shows all child elements for the given identifier")
+    param = ParamInfo(name = "argument", type = "string", optional=True, desc = "If you specify the argument 'all' (before the identifier), recursively show all child elements for the given identifier")
     cmd.add_param(param)
     cmd.add_param(param)
     param = ParamInfo(name = "identifier", type = "string", optional=True, desc = DEFAULT_IDENTIFIER_DESC)
     param = ParamInfo(name = "identifier", type = "string", optional=True, desc = DEFAULT_IDENTIFIER_DESC)
     cmd.add_param(param)
     cmd.add_param(param)

+ 2 - 2
src/bin/bindctl/cmdparse.py

@@ -41,7 +41,7 @@ PARAM_PATTERN = re.compile(param_name_str + param_value_str + next_params_str)
 # Used for module and command name
 # Used for module and command name
 NAME_PATTERN = re.compile("^\s*(?P<name>[\w]+)(?P<blank>\s*)(?P<others>.*)$")
 NAME_PATTERN = re.compile("^\s*(?P<name>[\w]+)(?P<blank>\s*)(?P<others>.*)$")
 
 
-# this removes all whitespace inthe given string, except when
+# this removes all whitespace in the given string, except when
 # between " quotes
 # between " quotes
 _remove_unquoted_whitespace = \
 _remove_unquoted_whitespace = \
     lambda text:'"'.join( it if i%2 else ''.join(it.split())
     lambda text:'"'.join( it if i%2 else ''.join(it.split())
@@ -92,7 +92,7 @@ def _remove_list_and_map_whitespace(text):
     
     
     
     
 class BindCmdParse:
 class BindCmdParse:
-    """ This class will parse the command line usr input into three part
+    """ This class will parse the command line user input into three parts:
     module name, command, parameters
     module name, command, parameters
     the first two parts are strings and parameter is one hash, 
     the first two parts are strings and parameter is one hash, 
     parameters part is optional
     parameters part is optional