Skip to content

Commit e64e628

Browse files
committed
Auto merge of #6403 - ehuss:doc-config-update, r=alexcrichton
Minor update to config docs.
2 parents 18aa5fb + 6e9b40c commit e64e628

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/doc/src/reference/config.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ rustdoc = "rustdoc" # the doc generator tool
121121
target = "triple" # build for the target triple (ignored by `cargo install`)
122122
target-dir = "target" # path of where to place all generated artifacts
123123
rustflags = ["..", ".."] # custom flags to pass to all compiler invocations
124+
rustdocflags = ["..", ".."] # custom flags to pass to rustdoc
124125
incremental = true # whether or not to enable incremental compilation
125126
dep-info-basedir = ".." # full path for the base directory for targets in depfiles
126127

@@ -133,10 +134,11 @@ color = 'auto' # whether cargo colorizes output
133134
retry = 2 # number of times a network call will automatically retried
134135
git-fetch-with-cli = false # if `true` we'll use `git`-the-CLI to fetch git repos
135136

136-
# Alias cargo commands. The first 3 aliases are built in. If your
137+
# Alias cargo commands. The first 4 aliases are built in. If your
137138
# command requires grouped whitespace use the list format.
138139
[alias]
139140
b = "build"
141+
c = "check"
140142
t = "test"
141143
r = "run"
142144
rr = "run --release"

0 commit comments

Comments
 (0)