diff mbox series

[3/3] oelib: utils: Fix description of set_difference

Message ID 20260403-default-features-2-v1-3-cba2a1e6224c@pbarker.dev
State Under Review
Headers show
Series Follow up patches for default features | expand

Commit Message

Paul Barker April 3, 2026, 8:38 a.m. UTC
Forgot to change the description when copy-pasting from set_intersect().

Signed-off-by: Paul Barker <paul@pbarker.dev>
---
 meta/lib/oe/utils.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/meta/lib/oe/utils.py b/meta/lib/oe/utils.py
index 639c037c1a01..ed5dd5f45049 100644
--- a/meta/lib/oe/utils.py
+++ b/meta/lib/oe/utils.py
@@ -86,7 +86,7 @@  def set_intersect(variable1, variable2, d):
 def set_difference(variable1, variable2, d):
     """
     Expand both variables, interpret them as lists of strings, and return the
-    intersection as a flattened string.
+    difference as a flattened string.
 
     For example:
     s1 = "a b c"