From 3734638f2f04b5e298dca250f589ae1e4913f88f Mon Sep 17 00:00:00 2001 From: Marshall Lochbaum Date: Mon, 5 Jul 2021 22:05:35 -0400 Subject: Always use "list", not "vector", in the spec --- docs/spec/grammar.html | 2 +- spec/grammar.md | 2 +- spec/reference.bqn | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/spec/grammar.html b/docs/spec/grammar.html index 9babde63..ca000bc6 100644 --- a/docs/spec/grammar.html +++ b/docs/spec/grammar.html @@ -14,7 +14,7 @@ EXPR = subExpr | FuncExpr | _m1Expr | _m2Expr_ EXPORT = LHS_ELT? "⇐" -

Here we define the "atomic" forms of functions and modifiers, which are either single tokens or enclosed in paired symbols. Stranded vectors with , which binds more tightly than any form of execution, are also included.

+

Here we define the "atomic" forms of functions and modifiers, which are either single tokens or enclosed in paired symbols. Stranded lists with , which binds more tightly than any form of execution, are also included.

ANY      = atom | Func | _mod1 | _mod2_
 _mod2_   = ( atom "." )? _c_ | _cl_ | "(" _m1Expr_ ")" | _brMod2_
 _mod1    = ( atom "." )? _m  | _ml  | "(" _m2Expr  ")" | _brMod1
diff --git a/spec/grammar.md b/spec/grammar.md
index 1cc31126..6ce8e8e2 100644
--- a/spec/grammar.md
+++ b/spec/grammar.md
@@ -14,7 +14,7 @@ A program is a list of statements. Almost all statements are expressions. Namesp
     EXPR     = subExpr | FuncExpr | _m1Expr | _m2Expr_
     EXPORT   = LHS_ELT? "⇐"
 
-Here we define the "atomic" forms of functions and modifiers, which are either single tokens or enclosed in paired symbols. Stranded vectors with `‿`, which binds more tightly than any form of execution, are also included.
+Here we define the "atomic" forms of functions and modifiers, which are either single tokens or enclosed in paired symbols. Stranded lists with `‿`, which binds more tightly than any form of execution, are also included.
 
     ANY      = atom | Func | _mod1 | _mod2_
     _mod2_   = ( atom "." )? _c_ | _cl_ | "(" _m1Expr_ ")" | _brMod2_
diff --git a/spec/reference.bqn b/spec/reference.bqn
index 983942df..7e1cee70 100644
--- a/spec/reference.bqn
+++ b/spec/reference.bqn
@@ -109,7 +109,7 @@ _fold←{
 
 ToArray ← IsArray◶<‿⊢
 
-∾ ← {k←≠𝕨⋄k⊸≤◶⟨⊑⟜𝕨⋄-⟜k⊑𝕩˜⟩¨↕k+≠𝕩}  # LIMITED to two vector arguments
+∾ ← {k←≠𝕨⋄k⊸≤◶⟨⊑⟜𝕨⋄-⟜k⊑𝕩˜⟩¨↕k+≠𝕩}  # LIMITED to two list arguments
 
 _table←{
   m←≠a←⥊𝕨 ⋄ n←≠b←⥊𝕩 ⋄ F←𝔽
-- 
cgit v1.2.3