aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/fromDyalog.md2
-rw-r--r--doc/shift.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/fromDyalog.md b/doc/fromDyalog.md
index 1ed78cea..a258a035 100644
--- a/doc/fromDyalog.md
+++ b/doc/fromDyalog.md
@@ -22,7 +22,7 @@ BQN shares the terms "cell" and "major cell" with Dyalog, and uses
### Roles
-Dyalog uses value types (array, function, and so on) to determine syntax while BQN uses a separate concept called syntactic roles. See [context-free grammer](context.md).
+Dyalog uses value types (array, function, and so on) to determine syntax while BQN uses a separate concept called syntactic roles. See [context-free grammar](context.md).
| Dyalog type | BQN role |
|------------------|------------|
diff --git a/doc/shift.md b/doc/shift.md
index 7b31a2b6..13c388cc 100644
--- a/doc/shift.md
+++ b/doc/shift.md
@@ -56,7 +56,7 @@ The glyphs `«` and `»`, suggesting movement, were chosen for the same reasons
3 ⥊⟜0⊸« i # Alternate left shift
-With a number in big-endian format, a right shift might be logical, shifting in zeros, or arithmetic, shifting in copies of the highest-order bit (for little-endian numbers, this applies to left shift rather than right ones). The two kinds of shift can be performed with similar code, using `0` or `⊏𝕩` for the inserted cell.
+With a number in big-endian format, a right shift might be logical, shifting in zeros, or arithmetic, shifting in copies of the highest-order bit (for little-endian numbers, this applies to left shifts rather than right ones). The two kinds of shift can be performed with similar code, using `0` or `⊏𝕩` for the inserted cell.
3 ⥊⟜0⊸» i # Logical right shift