From eeeda60bfbd390eea3366e0c5e6d57539decff2e Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Fri, 11 Aug 2017 19:30:39 +0100 Subject: [PATCH] A couple more small documentation updates. --- volatility/framework/symbols/intermed.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/volatility/framework/symbols/intermed.py b/volatility/framework/symbols/intermed.py index a69ddb792..f6a2543f3 100644 --- a/volatility/framework/symbols/intermed.py +++ b/volatility/framework/symbols/intermed.py @@ -209,6 +209,7 @@ class Version1Format(ISFormatTable): @property def symbols(self): + """Returns an iterator of the symbol names""" return self._json_object.get('symbols', {}).keys() @property @@ -218,7 +219,7 @@ class Version1Format(ISFormatTable): @property def types(self): - """Returns an iterator of the symbol names""" + """Returns an iterator of the symbol type names""" return list(self._json_object.get('user_types', {}).keys()) + list(self.natives.types) def get_type_class(self, name):