aboutsummaryrefslogtreecommitdiff
path: root/help
diff options
context:
space:
mode:
Diffstat (limited to 'help')
-rw-r--r--help/README.md6
-rwxr-xr-xhelp/genhelp.bqn2
-rw-r--r--help/shiftafter.md2
-rw-r--r--help/shiftbefore.md2
4 files changed, 6 insertions, 6 deletions
diff --git a/help/README.md b/help/README.md
index 16a194e7..604e37f7 100644
--- a/help/README.md
+++ b/help/README.md
@@ -33,8 +33,8 @@
| `↑` | [Prefixes, Take](prefixes_take.md) |
| `↓` | [Suffixes, Drop](suffixes_drop.md) |
| `↕` | [Range, Windows](range_windows.md) |
-| `«` | [Shift Before, Shift Before](shiftbefore.md) |
-| `»` | [Shift After, Shift After](shiftafter.md) |
+| `«` | [Nudge Back, Shift Before](shiftbefore.md) |
+| `»` | [Nudge, Shift After](shiftafter.md) |
| `⌽` | [Reverse, Rotate](reverse_rotate.md) |
| `⍉` | [Transpose, Reorder Axes](transpose_reorderaxes.md) |
| `/` | [Indices, Replicate](indices_replicate.md) |
@@ -70,7 +70,7 @@
| `` ` `` | [Scan, Scan With initial](scan.md) |
| `←` | [Define](define.md) |
| `⇐` | [Export Definition, Export names](export.md) |
-| `↩` | [Change](change.md) |
+| `↩` | [Change, Modify](change.md) |
| `,` or `⋄` | [Separator](separator.md) |
| `.` | [Namespace Field](namespacefield.md) |
| `(` | [Begin Expression](beginexpression.md) |
diff --git a/help/genhelp.bqn b/help/genhelp.bqn
index 71251d01..20cb66e8 100755
--- a/help/genhelp.bqn
+++ b/help/genhelp.bqn
@@ -5,7 +5,7 @@ gl ← "+-×÷⋆√⌊⌈∧∨¬|≤<>≥=≠≡≢⊣⊢⥊∾≍⋈↑↓↕
rows ← (⍋gl⊸⊐)⊸⊏˝⍉> {
data ← •FLines 𝕩
- names ← (⊣∾", "∾⊢)´{(¬·∧`' '⊸=)⊸/⌾⌽(»·∧`⌾⌽':'⊸≠)⊸/𝕩}¨("## "≡3⊸↑)¨⊸/data
+ names ← (⊣∾", "∾⊢)´⍷{(¬·∧`' '⊸=)⊸/⌾⌽(»·∧`⌾⌽':'⊸≠)⊸/𝕩}¨("## "≡3⊸↑)¨⊸/data
t‿d ← ∾/¨(⊏data)=¨"()"
sym ← (+`·»⊸-˝(¬»∧«)∘=⟜'`'∧⎉1"()"=⌜⊢)⊸/ 2⊑data
g ← 1⊑sym
diff --git a/help/shiftafter.md b/help/shiftafter.md
index 753fc77e..13d7818f 100644
--- a/help/shiftafter.md
+++ b/help/shiftafter.md
@@ -2,7 +2,7 @@
# Right Pointing Double Angle Quotation (`»`)
-## `» 𝕩`: Shift After
+## `» 𝕩`: Nudge
[→full documentation](../doc/shift.md)
Remove the last element of `𝕩`, add a cell of fill values to the start of the first axis of `𝕩`.
diff --git a/help/shiftbefore.md b/help/shiftbefore.md
index 25a1d799..1a41ed56 100644
--- a/help/shiftbefore.md
+++ b/help/shiftbefore.md
@@ -2,7 +2,7 @@
# Left Pointing Double Angle Quotation (`«`)
-## `« 𝕩`: Shift Before
+## `« 𝕩`: Nudge Back
[→full documentation](../doc/shift.md)
Remove the first element of `𝕩`, add a cell of fill values to the end of the first axis of `𝕩`.