Very minimally fix up the docstring for a function.

This commit is contained in:
Mike Auty
2016-12-04 01:01:46 +00:00
parent 88f1166c6d
commit e27a444068
+1 -1
View File
@@ -38,7 +38,7 @@ class SymbolSpace(collections.abc.Mapping):
### Symbol functions
def get_symbols_by_type(self, type_name):
"""Returns all symbols based """
"""Returns all symbols based on the type of the symbol"""
for table in self._dict.keys():
for symbol_name in self._dict[table].get_symbols_by_type(type_name):
yield table + constants.BANG + symbol_name