diff options
Diffstat (limited to 'grc/core')
-rw-r--r-- | grc/core/Block.py | 2 | ||||
-rw-r--r-- | grc/core/Constants.py | 2 | ||||
-rw-r--r-- | grc/core/Platform.py | 2 | ||||
-rw-r--r-- | grc/core/utils/odict.py | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/grc/core/Block.py b/grc/core/Block.py index f8179b113f..4be83b1304 100644 --- a/grc/core/Block.py +++ b/grc/core/Block.py @@ -686,7 +686,7 @@ class Block(Element): def resolve_dependencies(self, tmpl): """ - Resolve a paramater dependency with cheetah templates. + Resolve a parameter dependency with cheetah templates. Args: tmpl: the string with dependencies diff --git a/grc/core/Constants.py b/grc/core/Constants.py index 61a44d0c78..9e0a3f04b1 100644 --- a/grc/core/Constants.py +++ b/grc/core/Constants.py @@ -72,7 +72,7 @@ COMPLEX_TYPES = tuple(COMPLEX_TYPES + REAL_TYPES + INT_TYPES) REAL_TYPES = tuple(REAL_TYPES + INT_TYPES) INT_TYPES = tuple(INT_TYPES) -# Updating colors. Using the standard color pallette from: +# Updating colors. Using the standard color palette from: # http://www.google.com/design/spec/style/color.html#color-color-palette # Most are based on the main, primary color standard. Some are within # that color's spectrum when it was deemed necessary. diff --git a/grc/core/Platform.py b/grc/core/Platform.py index 258f38cc62..c977a04275 100644 --- a/grc/core/Platform.py +++ b/grc/core/Platform.py @@ -229,7 +229,7 @@ class Platform(Element): key = n.find('key') if not key: - print >> sys.stderr, 'Warning: Domain with emtpy key.\n\tIgnoring: {0}'.format(xml_file) + print >> sys.stderr, 'Warning: Domain with empty key.\n\tIgnoring: {0}'.format(xml_file) return if key in self.domains: # test against repeated keys print >> sys.stderr, 'Warning: Domain with key "{0}" already exists.\n\tIgnoring: {1}'.format(key, xml_file) diff --git a/grc/core/utils/odict.py b/grc/core/utils/odict.py index 9d69082600..e0ea0cc94f 100644 --- a/grc/core/utils/odict.py +++ b/grc/core/utils/odict.py @@ -66,7 +66,7 @@ class odict(DictMixin): def insert_before(self, pos_key, key, val): """ Insert the new key, value entry before the entry given by the position key. - If the positional key is None, insert at the begining. + If the positional key is None, insert at the beginning. Args: pos_key: the positional key |