Fix a typo in architecture.md (#5374)

This commit is contained in:
SelfMadeSystem 2024-11-05 03:26:02 -05:00 committed by GitHub
parent 656b8f1188
commit 5b11db0ef2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -156,7 +156,7 @@ builds heavily on the other modules (most importantly, `syntax` and `eval`).
**Syntactic:** **Syntactic:**
Basic IDE functionality is based on a file's syntax. However, the standard 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 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 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`, is an additional abstraction on top of a syntax node called a `LinkedNode`,
which is used pervasively across the `ide` module. which is used pervasively across the `ide` module.