aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorveetaha <[email protected]>2020-03-23 12:04:50 +0000
committerveetaha <[email protected]>2020-03-23 12:04:50 +0000
commite6691844db9ed9ae9143d14ab88d4b2eb7d74e76 (patch)
tree47db406dea10ec2fd262a49bb4ef73651f9a1c63
parent0fc21bd303e89986f3bf17fd4b4b2786793a3fce (diff)
ra_hir: fix typo
-rw-r--r--crates/ra_hir/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_hir/src/lib.rs b/crates/ra_hir/src/lib.rs
index 585217b7c..713d45f48 100644
--- a/crates/ra_hir/src/lib.rs
+++ b/crates/ra_hir/src/lib.rs
@@ -11,7 +11,7 @@
11//! 11//!
12//! `ra_hir_*` crates are the implementation of the compiler logic. 12//! `ra_hir_*` crates are the implementation of the compiler logic.
13//! They are written in "ECS" style, with relatively little abstractions. 13//! They are written in "ECS" style, with relatively little abstractions.
14//! Many types are not self-contained, and explicitelly use local indexes, arenas, etc. 14//! Many types are not self-contained, and explicitly use local indexes, arenas, etc.
15//! 15//!
16//! `ra_hir` is what insulates the "we don't know how to actually write an incremental compiler" 16//! `ra_hir` is what insulates the "we don't know how to actually write an incremental compiler"
17//! from the ide with completions, hovers, etc. It is a (soft, internal) boundary: 17//! from the ide with completions, hovers, etc. It is a (soft, internal) boundary: