manifest reference: correct statement: codegen-units=x is not ignored if lto=true.
authorMatthias Krüger <matthias.krueger@famsik.de>
Tue, 6 Feb 2018 12:27:56 +0000 (13:27 +0100)
committerMatthias Krüger <matthias.krueger@famsik.de>
Tue, 6 Feb 2018 12:27:56 +0000 (13:27 +0100)
Also fix typo along the way.

src/doc/src/reference/manifest.md

index 5985ceb544acfc96703bcacdfc8a795462c7d491..1c15ac457e012830c4dcc4bf5627a87a70ff2e4b 100644 (file)
@@ -189,7 +189,7 @@ license-file = "..."
 #   Appveyor, CircleCI, GitLab, and TravisCI.
 # - Available badges pertaining to code test coverage are Codecov and
 #   Coveralls.
-# - There are also maintenance-related badges basesed on isitmaintained.com
+# - There are also maintenance-related badges based on isitmaintained.com
 #   which state the issue resolution time, percent of open issues, and future
 #   maintenance intentions.
 #
@@ -301,7 +301,7 @@ debug-assertions = true # controls whether debug assertions are enabled
                    # (e.g. debug_assert!() and arithmetic overflow checks)
 codegen-units = 1  # if > 1 enables parallel code generation which improves
                    # compile times, but prevents some optimizations.
-                   # Passes `-C codegen-units`. Ignored when `lto = true`.
+                   # Passes `-C codegen-units`.
 panic = 'unwind'   # panic strategy (`-C panic=...`), can also be 'abort'
 incremental = true # whether or not incremental compilation is enabled
 overflow-checks = true # use overflow checks for integer arithmetic.