diff options
author | Robert P. J. Day <rpjday@crashcourse.ca> | 2014-08-20 08:23:27 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-08-25 08:57:45 +0100 |
commit | 6d08e5bb09293c03d8953831888c64d8eca889bf (patch) | |
tree | 7a2d7dff6f1db1324d84204a4c63669f59d23761 /bitbake/lib/bb/data.py | |
parent | 91083de4cb03bcb279ede3024cd2660b6c653808 (diff) | |
download | poky-6d08e5bb09293c03d8953831888c64d8eca889bf.tar.gz |
bitbake: lib/bb/*.py: Typo fixes/grammar/comment fixes, nothing functional.
(Bitbake rev: 587b144ee409d444494d8d7f2d1c53ede8f7c953)
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/data.py')
-rw-r--r-- | bitbake/lib/bb/data.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/bb/data.py b/bitbake/lib/bb/data.py index db938be1e6..3d776b32bf 100644 --- a/bitbake/lib/bb/data.py +++ b/bitbake/lib/bb/data.py | |||
@@ -6,7 +6,7 @@ BitBake 'Data' implementations | |||
6 | Functions for interacting with the data structure used by the | 6 | Functions for interacting with the data structure used by the |
7 | BitBake build tools. | 7 | BitBake build tools. |
8 | 8 | ||
9 | The expandData and update_data are the most expensive | 9 | The expandKeys and update_data are the most expensive |
10 | operations. At night the cookie monster came by and | 10 | operations. At night the cookie monster came by and |
11 | suggested 'give me cookies on setting the variables and | 11 | suggested 'give me cookies on setting the variables and |
12 | things will work out'. Taking this suggestion into account | 12 | things will work out'. Taking this suggestion into account |
@@ -15,7 +15,7 @@ Analyse von Algorithmen' lecture and the cookie | |||
15 | monster seems to be right. We will track setVar more carefully | 15 | monster seems to be right. We will track setVar more carefully |
16 | to have faster update_data and expandKeys operations. | 16 | to have faster update_data and expandKeys operations. |
17 | 17 | ||
18 | This is a treade-off between speed and memory again but | 18 | This is a trade-off between speed and memory again but |
19 | the speed is more critical here. | 19 | the speed is more critical here. |
20 | """ | 20 | """ |
21 | 21 | ||
@@ -35,7 +35,7 @@ the speed is more critical here. | |||
35 | # with this program; if not, write to the Free Software Foundation, Inc., | 35 | # with this program; if not, write to the Free Software Foundation, Inc., |
36 | # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | 36 | # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
37 | # | 37 | # |
38 | #Based on functions from the base bb module, Copyright 2003 Holger Schurig | 38 | # Based on functions from the base bb module, Copyright 2003 Holger Schurig |
39 | 39 | ||
40 | import sys, os, re | 40 | import sys, os, re |
41 | if sys.argv[0][-5:] == "pydoc": | 41 | if sys.argv[0][-5:] == "pydoc": |