summaryrefslogtreecommitdiff
path: root/bitbake/lib/bb
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2010-08-03 17:02:43 +0200
committerRichard Purdie <rpurdie@linux.intel.com>2010-08-04 16:12:39 +0100
commit8105d4381fc499fc1d47d1b1791e84560dc29063 (patch)
tree3eb456c7e439f85f3ea39837674ad561c54c3206 /bitbake/lib/bb
parent9383074deb75fda69d2302f85d03618fa1b5fe27 (diff)
downloadopenembedded-core-8105d4381fc499fc1d47d1b1791e84560dc29063.tar.gz
openembedded-core-8105d4381fc499fc1d47d1b1791e84560dc29063.tar.bz2
openembedded-core-8105d4381fc499fc1d47d1b1791e84560dc29063.tar.xz
openembedded-core-8105d4381fc499fc1d47d1b1791e84560dc29063.zip
*: Fix typo in documentation
s/dictonary/dictionary/ (Bitbake rev: 0cc632761e75f66a8ce5ca2fe370f7551ccbfdf0) Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib/bb')
-rw-r--r--bitbake/lib/bb/build.py2
-rw-r--r--bitbake/lib/bb/utils.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/build.py b/bitbake/lib/bb/build.py
index 5e1aaee80..0b974ebc2 100644
--- a/bitbake/lib/bb/build.py
+++ b/bitbake/lib/bb/build.py
@@ -308,7 +308,7 @@ def exec_task(task, d):
def extract_stamp(d, fn):
"""
- Extracts stamp format which is either a data dictonary (fn unset)
+ Extracts stamp format which is either a data dictionary (fn unset)
or a dataCache entry (fn set).
"""
if fn:
diff --git a/bitbake/lib/bb/utils.py b/bitbake/lib/bb/utils.py
index 665ffff45..db9905870 100644
--- a/bitbake/lib/bb/utils.py
+++ b/bitbake/lib/bb/utils.py
@@ -250,7 +250,7 @@ def explode_dep_versions(s):
"""
Take an RDEPENDS style string of format:
"DEPEND1 (optional version) DEPEND2 (optional version) ..."
- and return a dictonary of dependencies and versions.
+ and return a dictionary of dependencies and versions.
"""
r = {}
l = s.split()