about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAleksey Kladov <aleksey.kladov@gmail.com>2020-07-21 17:09:56 +0200
committerGitHub <noreply@github.com>2020-07-21 17:09:56 +0200
commiteb613c74da3b82529ed269817b388a3a37dff1fc (patch)
treec1669d095a58dada7f83526c1c27e337bb45bfed
parentca2a4ccf0578e1bc3ed06f0a7d34708478a8acae (diff)
downloadrust-eb613c74da3b82529ed269817b388a3a37dff1fc.tar.gz
rust-eb613c74da3b82529ed269817b388a3a37dff1fc.zip
Apply suggestions from code review
Co-authored-by: Laurențiu Nicola <lnicola@users.noreply.github.com>
-rw-r--r--docs/user/manual.adoc8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/user/manual.adoc b/docs/user/manual.adoc
index 8e95f51e353..2a58cd85fbb 100644
--- a/docs/user/manual.adoc
+++ b/docs/user/manual.adoc
@@ -290,7 +290,7 @@ interface Crate {
     /// By default, inferred from the `root_module` (members are the crates which reside
     /// inside the directory opened in the editor).
     ///
-    /// Set this too `false` for things like standard library and 3rd party crates to
+    /// Set this to `false` for things like standard library and 3rd party crates to
     /// enable performance optimizations (rust-analyzer assumes that non-member crates
     /// don't change).
     is_workspace_member?: boolean;
@@ -309,11 +309,11 @@ interface Crate {
     },
     /// The set of cfgs activated for a given crate, like `["unix", "feature=foo", "feature=bar"]`.
     cfg: string[];
-    /// Target tripple for this Crate.
+    /// Target triple for this Crate.
     ///
-    /// It is use when running `rustc --print cfg` to get target-specific cfgs.
+    /// Used when running `rustc --print cfg` to get target-specific cfgs.
     target?: string;
-    /// Environment variables, used for `env!` macro
+    /// Environment variables, used for the `env!` macro
     env: : { [key: string]: string; },
 
     /// For proc-macro crates, path to compiles proc-macro (.so file).