about summary refs log tree commit diff
path: root/docs
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-05-01 17:02:36 +0000
committerGitHub <noreply@github.com>2020-05-01 17:02:36 +0000
commit4d33cdcfb2e06088c8bccc57565224f8a377d899 (patch)
tree76486e7671a760d2daed52c22f5f75561791cf01 /docs
parent0b59be57476ef7a801a01c7e5e401c19c365cb2f (diff)
parenteafb2107dd176c60730f2c11a1c66d878064703c (diff)
downloadrust-4d33cdcfb2e06088c8bccc57565224f8a377d899.tar.gz
rust-4d33cdcfb2e06088c8bccc57565224f8a377d899.zip
Merge #4242
4242: Fix Typos r=jonas-schievink a=lonesometraveler



Co-authored-by: KENTARO OKUDA <lonesometraveler@mac.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/dev/architecture.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/dev/architecture.md b/docs/dev/architecture.md
index 3a337c57462..cee916c0963 100644
--- a/docs/dev/architecture.md
+++ b/docs/dev/architecture.md
@@ -46,7 +46,7 @@ can be quickly updated for small modifications.
 
 Some of the components of this repository are generated through automatic
 processes. `cargo xtask codegen` runs all generation tasks. Generated code is
-commited to the git repository.
+committed to the git repository.
 
 In particular, `cargo xtask codegen` generates:
 
@@ -114,7 +114,7 @@ is responsible for guessing a HIR for a particular source position.
 Underneath, HIR works on top of salsa, using a `HirDatabase` trait.
 
 `ra_hir_xxx` crates have a strong ECS flavor, in that they work with raw ids and
-directly query the databse.
+directly query the database.
 
 The top-level `ra_hir` façade crate wraps ids into a more OO-flavored API.