Skip to content

Commit cac9173

Browse files
committed
Auto merge of #5017 - matthiaskrgr:manifest_cgu_lto, r=alexcrichton
manifest reference: correct statement: codegen-units=x is not ignored if lto=true. Also fix typo along the way.
2 parents b7c2cfb + 50d210c commit cac9173

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/doc/src/reference/manifest.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ license-file = "..."
189189
# Appveyor, CircleCI, GitLab, and TravisCI.
190190
# - Available badges pertaining to code test coverage are Codecov and
191191
# Coveralls.
192-
# - There are also maintenance-related badges basesed on isitmaintained.com
192+
# - There are also maintenance-related badges based on isitmaintained.com
193193
# which state the issue resolution time, percent of open issues, and future
194194
# maintenance intentions.
195195
#
@@ -301,7 +301,7 @@ debug-assertions = true # controls whether debug assertions are enabled
301301
# (e.g. debug_assert!() and arithmetic overflow checks)
302302
codegen-units = 1 # if > 1 enables parallel code generation which improves
303303
# compile times, but prevents some optimizations.
304-
# Passes `-C codegen-units`. Ignored when `lto = true`.
304+
# Passes `-C codegen-units`.
305305
panic = 'unwind' # panic strategy (`-C panic=...`), can also be 'abort'
306306
incremental = true # whether or not incremental compilation is enabled
307307
overflow-checks = true # use overflow checks for integer arithmetic.

0 commit comments

Comments
 (0)