about summary refs log tree commit diff
path: root/docs
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2021-07-19 02:54:09 +0000
committerGitHub <noreply@github.com>2021-07-19 02:54:09 +0000
commit64bf67c5aa096eb6a059d6bb8304981ecb90318e (patch)
tree45947e2fda20e38409687e7c7157e9072629463b /docs
parentea105f9396a9dab68e71efb06016b7c76c83ba7c (diff)
parent60be683d5ea9110aafc2ff445888eef99e96b9dc (diff)
downloadrust-64bf67c5aa096eb6a059d6bb8304981ecb90318e.tar.gz
rust-64bf67c5aa096eb6a059d6bb8304981ecb90318e.zip
Merge #9627
9627: fix: Typo in architecture.md r=lnicola a=alexfertel



Co-authored-by: Alexander Gonzalez <alexfertel97@gmail.com>
Diffstat (limited to 'docs')
-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 663d6392274..db42a30c6b8 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.