]> code.ossystems Code Review - openembedded-core.git/commitdiff
*: Fix typo in documentation
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Tue, 3 Aug 2010 15:02:43 +0000 (17:02 +0200)
committerRichard Purdie <rpurdie@linux.intel.com>
Wed, 4 Aug 2010 15:12:39 +0000 (16:12 +0100)
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>
bitbake/ChangeLog
bitbake/lib/bb/build.py
bitbake/lib/bb/utils.py

index 22124cb7eaf4195177101f778ba4936bbf791934..4ac2a644628e0f2ed40097bae0585d66c71f68d2 100644 (file)
@@ -138,7 +138,7 @@ Changes in Bitbake 1.9.x:
          directory != the cache dir.
        - Add md5 and sha256 checksum generation functions to utils.py
        - Correctly handle '-' characters in class names (#2958)
-       - Make sure expandKeys has been called on the data dictonary before running tasks
+       - Make sure expandKeys has been called on the data dictionary before running tasks
        - Correctly add a task override in the form task-TASKNAME.
        - Revert the '-' character fix in class names since it breaks things
        - When a regexp fails to compile for PACKAGES_DYNAMIC, print a more useful error (#4444)
index 5e1aaee802f9df86e1660d224e0625bfb5d5d652..0b974ebc2ad92cf2476406161f21830795b2272c 100644 (file)
@@ -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:
index 665ffff45a2541b67ea6376114e3cbfa3e8cf677..db99058701b9aa3d63561d8a18e552dca2e742ae 100644 (file)
@@ -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()