m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 4 insertions, 2 deletions
diff --git a/README.md b/README.md
index e868675..5b7ff49 100644
--- a/README.md
+++ b/README.md
@@ -119,7 +119,9 @@ Semantics are defined in terms of the `pool` function.
Additionally:
* The binary arithmetic operations (` + `, ` - `) are left associative.
+* The bonus operations (`+`, `-`) are left associative. They bind stronger than
+ arithmetic operations.
* The die operations (`d`, `E`, `K`, `k`) are right associative (`1d2d3` is
equivalent to `1d(2d3)`, use explicit parentheses if you need `(1d2)d3`).
-* Die operations bind stronger than the binary arithmetic operations (`1d6+1d4`
- is equivalent to `(1d6) + (1d4)`).
+* Die operations bind stronger than the binary arithmetic operations
+ (`1d6 + 1d4` is equivalent to `(1d6) + (1d4)`) and the bonus operations.