Skip to content

Commit 2a396e4

Browse files
AntoineButrayegun
authored andcommitted
Fixed errors in any and pair notes
1 parent ebb004d commit 2a396e4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/src/binaryops.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ All built-in binary operators can be found below:
4040
|:----------------|----------------:|------------------------------------------------------ |
4141
| `first` | `FIRST` | `first(x, y) = x` |
4242
| `second` | `SECOND` | `second(x, y) = y` |
43-
| `any` | `ANY` | `any(x, y) = 1` if `x` **or** `y` are stored values |
44-
| `pair` | `PAIR` | `any(x, y) = 1` if `x` **and** `y` are stored values |
43+
| `any` | `ANY` | `any(x, y)` can return either `x` or `y`. The result is non-deterministic.|
44+
| `pair` | `PAIR` | `pair(x, y) = 1` if `x` **and** `y` are stored values|
4545
| `+` | `PLUS` | |
4646
| `-` | `MINUS` | |
4747
| `rminus` | `RMINUS` | |
@@ -88,4 +88,4 @@ All built-in binary operators can be found below:
8888
| `secondi0` | `SECONDI` | `secondi0(A[i,j], B[k,l]) = k - 1` |
8989
| `secondi` | `SECONDI1` | `secondi(A[i,j], B[k,l]) = k` |
9090
| `secondj0` | `SECONDJ` | `secondj0(A[i,j], B[k,l]) = l - 1` |
91-
| `secondj` | `SECONDJ1` | `secondj(A[i,j], B[k,l]) = l` |
91+
| `secondj` | `SECONDJ1` | `secondj(A[i,j], B[k,l]) = l` |

0 commit comments

Comments
 (0)