diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2010-08-03 17:02:43 +0200 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-08-04 16:12:39 +0100 |
commit | 8105d4381fc499fc1d47d1b1791e84560dc29063 (patch) | |
tree | 3eb456c7e439f85f3ea39837674ad561c54c3206 /bitbake/lib/bb/utils.py | |
parent | 9383074deb75fda69d2302f85d03618fa1b5fe27 (diff) | |
download | poky-8105d4381fc499fc1d47d1b1791e84560dc29063.tar.gz |
*: 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/utils.py')
-rw-r--r-- | bitbake/lib/bb/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/utils.py b/bitbake/lib/bb/utils.py index 665ffff45a..db99058701 100644 --- a/bitbake/lib/bb/utils.py +++ b/bitbake/lib/bb/utils.py | |||
@@ -250,7 +250,7 @@ def explode_dep_versions(s): | |||
250 | """ | 250 | """ |
251 | Take an RDEPENDS style string of format: | 251 | Take an RDEPENDS style string of format: |
252 | "DEPEND1 (optional version) DEPEND2 (optional version) ..." | 252 | "DEPEND1 (optional version) DEPEND2 (optional version) ..." |
253 | and return a dictonary of dependencies and versions. | 253 | and return a dictionary of dependencies and versions. |
254 | """ | 254 | """ |
255 | r = {} | 255 | r = {} |
256 | l = s.split() | 256 | l = s.split() |