Skip to content

Commit 4d8c0bb

Browse files
committed
Capitalization
SemVer Rust capitalization
1 parent c4635da commit 4d8c0bb

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/doc/src/faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ compatibility). If Cargo used all of the dependencies' `Cargo.lock` files,
125125
then multiple copies of the library could be used, and perhaps even a version
126126
conflict.
127127

128-
In other words, libraries specify semver requirements for their dependencies but
128+
In other words, libraries specify SemVer requirements for their dependencies but
129129
cannot see the full picture. Only end products like binaries have a full
130130
picture to decide what versions of dependencies should be used.
131131

src/doc/src/reference/environment-variables.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ let out_dir = env::var("OUT_DIR").unwrap();
316316
* `TARGET` — the target triple that is being compiled for. Native code should be
317317
compiled for this triple. See the [Target Triple] description
318318
for more information.
319-
* `HOST` — the host triple of the rust compiler.
319+
* `HOST` — the host triple of the Rust compiler.
320320
* `NUM_JOBS` — the parallelism specified as the top-level parallelism. This can
321321
be useful to pass a `-j` parameter to a system like `make`. Note
322322
that care should be taken when interpreting this environment

src/doc/src/reference/manifest.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,11 +98,11 @@ Versioning](https://semver.org/), so make sure you follow some basic rules:
9898

9999
See the [Resolver] chapter for more information on how Cargo uses versions to
100100
resolve dependencies, and for guidelines on setting your own version. See the
101-
[Semver compatibility] chapter for more details on exactly what constitutes a
101+
[SemVer compatibility] chapter for more details on exactly what constitutes a
102102
breaking change.
103103

104104
[Resolver]: resolver.md
105-
[Semver compatibility]: semver.md
105+
[SemVer compatibility]: semver.md
106106

107107
<a id="the-authors-field-optional"></a>
108108
#### The `authors` field

src/doc/src/reference/unstable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ generated if dev-dependencies are skipped.
207207
> versions for direct dependencies.
208208
209209
When a `Cargo.lock` file is generated, the `-Z minimal-versions` flag will
210-
resolve the dependencies to the minimum semver version that will satisfy the
210+
resolve the dependencies to the minimum SemVer version that will satisfy the
211211
requirements (instead of the greatest version).
212212

213213
The intended use-case of this flag is to check, during continuous integration,

0 commit comments

Comments
 (0)