From bf9b7841a677dd185bbbf32831ffec3793cfbeab Mon Sep 17 00:00:00 2001 From: Ivan Ukhov Date: Wed, 18 Nov 2015 13:57:41 +0100 Subject: [PATCH] =?UTF-8?q?Spell=20=E2=80=9CCargo=E2=80=9D=20consistently?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/doc/config.md | 6 +++--- src/doc/manifest.md | 2 +- src/doc/pkgid-spec.md | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/doc/config.md b/src/doc/config.md index da0e206e7a5..b45ae23ad28 100644 --- a/src/doc/config.md +++ b/src/doc/config.md @@ -1,6 +1,6 @@ % Configuration - Cargo Documentation -This document will explain how cargo’s configuration system works, as well as +This document will explain how Cargo’s configuration system works, as well as available keys or configuration. For configuration of a project through its manifest, see the [manifest format](manifest.html). @@ -8,7 +8,7 @@ manifest, see the [manifest format](manifest.html). Cargo allows to have local configuration for a particular project or global configuration (like git). Cargo also extends this ability to a hierarchical -strategy. If, for example, cargo were invoked in `/home/foo/bar/baz`, then the +strategy. If, for example, Cargo were invoked in `/home/foo/bar/baz`, then the following configuration files would be probed for: * `/home/foo/bar/baz/.cargo/config` @@ -59,7 +59,7 @@ vcs = "none" # literal string "$triple", and it will apply whenever that target triple is # being compiled to. [target] -# For cargo builds which do not mention --target, these are the ar/linker tools +# For Cargo builds which do not mention --target, these are the ar/linker tools # which are passed to rustc to use (via `-C ar=` and `-C linker=`). By default # these flags are not passed to the compiler. ar = ".." diff --git a/src/doc/manifest.md b/src/doc/manifest.md index 83130d4101e..3cba30f114b 100644 --- a/src/doc/manifest.md +++ b/src/doc/manifest.md @@ -479,7 +479,7 @@ bench = true doc = true # If the target is meant to be a compiler plugin, this field must be set to true -# for cargo to correctly compile it and make it available for all dependencies. +# for Cargo to correctly compile it and make it available for all dependencies. plugin = false # If set to false, `cargo test` will omit the --test flag to rustc, which stops diff --git a/src/doc/pkgid-spec.md b/src/doc/pkgid-spec.md index 8b28d7d9fc8..fea45e3b74d 100644 --- a/src/doc/pkgid-spec.md +++ b/src/doc/pkgid-spec.md @@ -2,9 +2,9 @@ # Package ID Specifications -Subcommands of cargo frequently need to refer to a particular package within a +Subcommands of Cargo frequently need to refer to a particular package within a dependency graph for various operations like updating, cleaning, building, etc. -To solve this problem, cargo supports Package ID Specifications. A specification +To solve this problem, Cargo supports Package ID Specifications. A specification is a string which is used to uniquely refer to one package within a graph of packages.