summaryrefslogtreecommitdiffstats
path: root/src/pdmgen.py
diff options
context:
space:
mode:
authorGunnar Mills <gmills@us.ibm.com>2017-10-25 16:30:18 -0500
committerGunnar Mills <gmills@us.ibm.com>2017-10-25 16:33:00 -0500
commit78199b44b1438295b79f562e9d240034c05e4171 (patch)
tree7c23b99c475161b159f0c453ebb536bf185df800 /src/pdmgen.py
parent937df1a99a263e73f820a66dada29cde2f58e847 (diff)
downloadphosphor-dbus-monitor-78199b44b1438295b79f562e9d240034c05e4171.tar.gz
phosphor-dbus-monitor-78199b44b1438295b79f562e9d240034c05e4171.zip
Spelling fixes
Spelling errors found using github.com/lucasdemarchi/codespell A tool to fix common misspellings. This tool is licensed under GNU General Public License, version 2. Change-Id: I83c844373ea41d762367085cb16b01d31676e33d Signed-off-by: Gunnar Mills <gmills@us.ibm.com>
Diffstat (limited to 'src/pdmgen.py')
-rwxr-xr-xsrc/pdmgen.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/pdmgen.py b/src/pdmgen.py
index 3691d59..693b149 100755
--- a/src/pdmgen.py
+++ b/src/pdmgen.py
@@ -266,7 +266,7 @@ class Path(ConfigEntry):
super(Path, self).factory(objs)
def setup(self, objs):
- '''Resolve path and metadata names to indicies.'''
+ '''Resolve path and metadata names to indices.'''
self.path = get_index(
objs, 'pathname', self.name['path'])
@@ -318,7 +318,7 @@ class Property(ConfigEntry):
super(Property, self).factory(objs)
def setup(self, objs):
- '''Resolve interface, property and metadata to indicies.'''
+ '''Resolve interface, property and metadata to indices.'''
self.interface = get_index(
objs, 'interface', self.name['interface'])
@@ -337,7 +337,7 @@ class Instance(ConfigEntry):
super(Instance, self).__init__(**kw)
def setup(self, objs):
- '''Resolve elements to indicies.'''
+ '''Resolve elements to indices.'''
self.interface = get_index(
objs, 'interface', self.name['property']['interface'])
@@ -942,7 +942,7 @@ class Everything(Renderer):
# is just an array index.
#
# At this point all objects have been created but references
- # have not been resolved to array indicies. Instruct objects
+ # have not been resolved to array indices. Instruct objects
# to do that now.
for cls, items in objs.items():
for obj in items:
OpenPOWER on IntegriCloud