diff mbox series

[U-Boot,v2,05/37] binman: Fix comment in bsection.GetEntries()

Message ID 20190708191856.138863-6-sjg@chromium.org
State Accepted
Commit 452285294f2cfad4fef8c605edb9fc69b9e159b8
Delegated to: Simon Glass
Headers show
Series binman: Add CBFS support | expand

Commit Message

Simon Glass July 8, 2019, 7:18 p.m. UTC
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>
---

Changes in v2: None

 tools/binman/bsection.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/tools/binman/bsection.py b/tools/binman/bsection.py
index 03dfa2f805c..a3026718794 100644
--- a/tools/binman/bsection.py
+++ b/tools/binman/bsection.py
@@ -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