summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorIlya Etingof <etingof@gmail.com>2018-07-03 08:05:23 +0200
committerIlya Etingof <etingof@gmail.com>2018-07-03 08:05:23 +0200
commit7f65dde49ad68b295e32fc73fc20f2dc7d0f2ffc (patch)
treeac6ea67e4faec2be3df957125f0e6756e0dc0150 /examples
parentda4539e34cacdc0bd6ecfba98dc48caecc12b104 (diff)
downloadpysnmp-git-7f65dde49ad68b295e32fc73fc20f2dc7d0f2ffc.tar.gz
Fix typos
Diffstat (limited to 'examples')
-rw-r--r--examples/smi/manager/mib-tree-inspection.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/smi/manager/mib-tree-inspection.py b/examples/smi/manager/mib-tree-inspection.py
index cff34b00..58b110a6 100644
--- a/examples/smi/manager/mib-tree-inspection.py
+++ b/examples/smi/manager/mib-tree-inspection.py
@@ -58,10 +58,10 @@ print('MIB node lookup by location: '),
rowNode, = mibBuilder.importSymbols(modName, symName)
print(rowNode)
-print('Conceptual table index value to oid convertion: '),
+print('Conceptual table index value to oid conversion: '),
oid = rowNode.getInstIdFromIndices('router')
print(oid)
-print('Conceptual table index oid to value convertion: '),
+print('Conceptual table index oid to value conversion: '),
print(rowNode.getIndicesFromInstId(oid))
print('MIB tree traversal')