From 60be683d5ea9110aafc2ff445888eef99e96b9dc Mon Sep 17 00:00:00 2001 From: Alexander Gonzalez Date: Sun, 18 Jul 2021 22:17:45 -0400 Subject: [PATCH] fix: Typo in architecture.md --- 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 663d639227..db42a30c6b 100644 --- a/docs/dev/architecture.md +++ b/docs/dev/architecture.md @@ -212,7 +212,7 @@ If you want to use IDE parts of rust-analyzer via LSP, custom flatbuffers-based The API uses editor's terminology, it talks about offsets and string labels rather than in terms of definitions or types. It is effectively the view in MVC and viewmodel in [MVVM](https://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93viewmodel). All arguments and return types are conceptually serializable. -In particular, syntax tress and hir types are generally absent from the API (but are used heavily in the implementation). +In particular, syntax trees and hir types are generally absent from the API (but are used heavily in the implementation). Shout outs to LSP developers for popularizing the idea that "UI" is a good place to draw a boundary at. `ide` is also the first crate which has the notion of change over time.