summaryrefslogtreecommitdiff
path: root/docs/dev
diff options
context:
space:
mode:
authorSelfMadeSystem <sms@shoghisimon.ca>2024-11-05 03:26:02 -0500
committerGitHub <noreply@github.com>2024-11-05 08:26:02 +0000
commit5b11db0ef2b946122e2221ec9818074ab2efab7c (patch)
treef94ddb7af5ab43e7dd1b7c4f0ff6483ad5830741 /docs/dev
parent656b8f1188a5fb0b6e4371b2389cc6b1d8c15c0b (diff)
Fix a typo in architecture.md (#5374)
Diffstat (limited to 'docs/dev')
-rw-r--r--docs/dev/architecture.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/dev/architecture.md b/docs/dev/architecture.md
index 2caa12b7..d5bbba2e 100644
--- a/docs/dev/architecture.md
+++ b/docs/dev/architecture.md
@@ -156,7 +156,7 @@ builds heavily on the other modules (most importantly, `syntax` and `eval`).
**Syntactic:**
Basic IDE functionality is based on a file's syntax. However, the standard
syntax node is a bit too limited for writing IDE tooling. It doesn't provide
-access to its parents or neighbours. This is a fine for an evaluation-like
+access to its parents or neighbours. This is fine for an evaluation-like
recursive traversal, but impractical for IDE use cases. For this reason, there
is an additional abstraction on top of a syntax node called a `LinkedNode`,
which is used pervasively across the `ide` module.