Skip to content

Commit c049570

Browse files
committed
Merge pull request #4 from Xaerxess/fix-set-operations-ascii
Fixed ASCII set operations examples
2 parents 58d5cf0 + 5088124 commit c049570

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

lib/Set/Scalar.pm

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -149,21 +149,21 @@ Some examples of the various set differences below
149149
150150
set or difference value
151151
152-
$a (a b c d e _ _ _ _ _)
153-
$b (_ _ _ c d e f g _ _)
154-
$c (_ _ _ _ _ e f g h i)
152+
$a (a b c d e _ _ _ _)
153+
$b (_ _ c d e f g _ _)
154+
$c (_ _ _ _ e f g h i)
155155
156-
$a->difference($b) (a b _ _ _ _ _ _ _ _)
157-
$a->symmetric_difference($b) (a b _ _ _ _ f g _ _)
158-
$a->unique($b) (a b _ _ _ _ f g _ _)
156+
$a->difference($b) (a b _ _ _ _ _ _ _)
157+
$a->symmetric_difference($b) (a b _ _ _ f g _ _)
158+
$a->unique($b) (a b _ _ _ f g _ _)
159159
160-
$b->difference($a) (_ _ _ _ _ _ f g _ _)
161-
$b->symmetric_difference($a) (a b _ _ _ _ f g _ _)
162-
$b->unique($a) (a b _ _ _ _ f g _ _)
160+
$b->difference($a) (_ _ _ _ _ f g _ _)
161+
$b->symmetric_difference($a) (a b _ _ _ f g _ _)
162+
$b->unique($a) (a b _ _ _ f g _ _)
163163
164-
$a->difference($b, $c) (a b _ _ _ _ _ _ _ _)
165-
$a->symmetric_difference($b, $c) (a b _ _ e _ _ _ h i)
166-
$a->unique($b, $c) (a b _ _ _ _ _ _ h i)
164+
$a->difference($b, $c) (a b _ _ _ _ _ _ _)
165+
$a->symmetric_difference($b, $c) (a b _ _ e _ _ h i)
166+
$a->unique($b, $c) (a b _ _ _ _ _ h i)
167167
168168
=head2 Comparing
169169

0 commit comments

Comments
 (0)