Skip to content

Commit

Permalink
Fix copy-n-paste thinko.
Browse files Browse the repository at this point in the history
  • Loading branch information
colomon committed Feb 12, 2012
1 parent 251655b commit 1a81b75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/CORE.setting
Expand Up @@ -2044,8 +2044,8 @@ only sub infix:<(elem)>($a, $b --> Bool) { $a ∈ $b }
only sub infix:<∉>($a, $b --> Bool) is equiv(&infix:<==>) { $a ! $b }
proto sub infix:<∋>($, $ --> Bool) is equiv(&infix:<==>) {*}
multi sub infix:<∋>($a, Any $b --> Bool) { Set($a) $b }
multi sub infix:<∋>($a, Set $b --> Bool) { $a.exists($b) }
multi sub infix:<∋>(Any $a, $b --> Bool) { Set($a) $b }
multi sub infix:<∋>(Set $a, $b --> Bool) { $a.exists($b) }
multi sub infix:<(cont)>($a, $b --> Bool) { $a $b }
only sub infix:<∌>($a, $b --> Bool) is equiv(&infix:<==>) { $a ! $b }
Expand Down

0 comments on commit 1a81b75

Please sign in to comment.