Skip to content

Commit

Permalink
Update docsite/source/operations.html.md
Browse files Browse the repository at this point in the history
Fix implication operation description
  • Loading branch information
AllanQ authored and flash-gordon committed May 4, 2024
1 parent bdc902c commit 1dbdd09
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docsite/source/operations.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@ Argument 1 | Argument 2 | Result
--- | --- | ---
true | true | true
true | false | false
false | true | false
false | false | false
false | true | true
false | false | true

``` ruby
is_empty = build do
(attr?(:empty) > empty?) | nil?
(attr?(:empty?) > empty?) | nil?
end

is_empty.call("").success? # => true
Expand Down

0 comments on commit 1dbdd09

Please sign in to comment.