summaryrefslogtreecommitdiffstats
path: root/lib/bb/namedtuple_with_abc.py
diff options
context:
space:
mode:
authorRobert P. J. Day <rpjday@crashcourse.ca>2014-08-20 08:23:27 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-08-24 10:00:55 +0100
commit587b144ee409d444494d8d7f2d1c53ede8f7c953 (patch)
tree611ecb4b57b8acb0fbcfc97b4de3fc35dbdcc8fb /lib/bb/namedtuple_with_abc.py
parent984ad90b2f1e29634dc79803a4a0404ab0534039 (diff)
downloadbitbake-contrib-587b144ee409d444494d8d7f2d1c53ede8f7c953.tar.gz
lib/bb/*.py: Typo fixes/grammar/comment fixes, nothing functional.
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/namedtuple_with_abc.py')
-rw-r--r--lib/bb/namedtuple_with_abc.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/bb/namedtuple_with_abc.py b/lib/bb/namedtuple_with_abc.py
index f5e0a3f3d..32f2fc642 100644
--- a/lib/bb/namedtuple_with_abc.py
+++ b/lib/bb/namedtuple_with_abc.py
@@ -202,8 +202,8 @@ if __name__ == '__main__':
print(rec5._replace(k=222)._my_custom_method()) # MyMixIn's
print(rec5._replace(k=222).count(2)) # MyMixIn's
- # None that behavior: the standard namedtuple methods cannot be
- # overriden by a foreign mix-in -- even if the mix-in is declared
+ # Note that behavior: the standard namedtuple methods cannot be
+ # overridden by a foreign mix-in -- even if the mix-in is declared
# as the leftmost base class (but, obviously, you can override them
# in the defined class or its subclasses):