Skip to content

Commit

Permalink
Examples
Browse files Browse the repository at this point in the history
  • Loading branch information
BBB committed Jun 6, 2023
1 parent 6b99b09 commit 45e1809
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ console.log(one.or(two).or(three));
* [["ONE"], ["TWO"], ["THREE"]]
*/

console.log(one.or(two.and(three)));
console.log(one.or(two).and(three));
/**
* Gives us:
* [["ONE"], ["TWO", "THREE"]]
* [["ONE", "THREE"], ["TWO", "THREE"]]
*/
```

0 comments on commit 45e1809

Please sign in to comment.