binman: Fix comment in bsection.GetEntries()

This comment is out of date as it does not correctly describe the return
value. Fix it.

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass 2019-07-08 13:18:24 -06:00
parent 512f4550d2
commit 452285294f

View File

@ -399,10 +399,10 @@ class Section(object):
raise ValueError("%s: No such property '%s'" % (msg, prop_name))
def GetEntries(self):
"""Get the number of entries in a section
"""Get the dict of entries in a section
Returns:
Number of entries in a section
OrderedDict of entries in a section
"""
return self._entries