Skip to content

Commit 6506605

Browse files
committed
Fix
1 parent 239afd3 commit 6506605

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fuzzy_logic/fuzzy_operations.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ def union(self, other) -> FuzzySet:
147147
FuzzySet: A new fuzzy set representing the union.
148148
149149
>>> FuzzySet("a", 0.1, 0.2, 0.3).union(FuzzySet("b", 0.4, 0.5, 0.6))
150-
FuzzySet(name='a b', left_boundary=0.1, peak=0.6, right_boundary=0.35)
150+
FuzzySet(name='a U b', left_boundary=0.1, peak=0.6, right_boundary=0.35)
151151
"""
152152
return FuzzySet(
153153
f"{self.name} U {other.name}",

0 commit comments

Comments
 (0)