From e27a4440689408247e6e1b8e560336ed34e5ffda Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Sun, 4 Dec 2016 01:01:46 +0000 Subject: [PATCH] Very minimally fix up the docstring for a function. --- volatility/framework/symbols/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volatility/framework/symbols/__init__.py b/volatility/framework/symbols/__init__.py index b78def106..7f61c24de 100644 --- a/volatility/framework/symbols/__init__.py +++ b/volatility/framework/symbols/__init__.py @@ -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