From 5b11db0ef2b946122e2221ec9818074ab2efab7c Mon Sep 17 00:00:00 2001 From: SelfMadeSystem Date: Tue, 5 Nov 2024 03:26:02 -0500 Subject: [PATCH] Fix a typo in architecture.md (#5374) --- docs/dev/architecture.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/dev/architecture.md b/docs/dev/architecture.md index 2caa12b7c..d5bbba2e3 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.