[02/17] cooker: Fix typo "tuples"

Message ID 20220219164021.8344-2-zygmunt.krynicki@huawei.com
State New
Headers show
Series [01/17] cooker: Fix typo "isn't" | expand

Commit Message

Zygmunt Krynicki Feb. 19, 2022, 4:40 p.m. UTC
Signed-off-by: Zygmunt Krynicki <zygmunt.krynicki@huawei.com>
---
 lib/bb/cooker.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Patch

diff --git a/lib/bb/cooker.py b/lib/bb/cooker.py
index d15b0eb8..2ed984d7 100644
--- a/lib/bb/cooker.py
+++ b/lib/bb/cooker.py
@@ -1763,7 +1763,7 @@  class CookerCollectFiles(object):
     def __init__(self, priorities, mc=''):
         self.mc = mc
         self.bbappends = []
-        # Priorities is a list of tupples, with the second element as the pattern.
+        # Priorities is a list of tuples, with the second element as the pattern.
         # We need to sort the list with the longest pattern first, and so on to
         # the shortest.  This allows nested layers to be properly evaluated.
         self.bbfile_config_priorities = sorted(priorities, key=lambda tup: tup[1], reverse=True)