aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-04-06 22:45:02 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-04-06 22:45:02 -0400
commit44cd26f2cebd760a53aa4ff1b7779e718a101650 (patch)
tree4bdc9144c6825a0c394155712d5e464ee2a61061 /README.md
parent3406515a44b13d0c290c28ac42bd364ce27560c7 (diff)
Rename Array -> List in all code and docs
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index a86d77c3..5d7f35a4 100644
--- a/README.md
+++ b/README.md
@@ -46,7 +46,7 @@ of many language features or the other example programs/modules in
- Memory safety (garbage collection, [compiler-enforced null
safety](docs/pointers.md), [automatic array bounds
- checking](docs/arrays.md), and no uninitialized variables)
+ checking](docs/lists.md), and no uninitialized variables)
- High-performance [arbitrary-precision integers](docs/integers.md) by default
with opt-in fixed-size integers with arithmetic overflow checking
- [Type-safe strings representing different languages](docs/langs.md) with
@@ -55,7 +55,7 @@ of many language features or the other example programs/modules in
unions/enums)](docs/enums.md)
- Type-safe [optional values](docs/optionals.tm) with low syntax overhead
- Efficient datastructures with immutable value semantics:
- [arrays](docs/arrays.md), [tables](docs/tables.md), [sets](docs/sets.md),
+ [lists](docs/lists.md), [tables](docs/tables.md), [sets](docs/sets.md),
[text](docs/text.md).
- [Privacy-protecting types](docs/structs.md#Secret-Values) that help prevent
accidentally logging sensitive information
@@ -70,7 +70,7 @@ of many language features or the other example programs/modules in
- [String interpolation](docs/text.md) and debug printing builtins
- Built-in datastructures with a rich library of commonly used methods:
- [arrays](docs/arrays.md), [tables](docs/tables.md), [sets](docs/sets.md),
+ [lists](docs/lists.md), [tables](docs/tables.md), [sets](docs/sets.md),
[text](docs/text.md).
- Full-featured [libraries/modules](docs/libraries.md)
- [Full UTF8 support](docs/text.md) for all text operations