Skip to content

Commit ef3696c

Browse files
committed
Auto merge of #8931 - tshepang:patch-1, r=Eh2406
faq: small fixes
2 parents 3d5447e + d453c2c commit ef3696c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/doc/src/faq.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ sometimes rebuild code when you're not expecting it!
210210
We've long [wanted to provide better diagnostics about
211211
this](https://github.com/rust-lang/cargo/issues/2904) but unfortunately haven't
212212
been able to make progress on that issue in quite some time. In the meantime,
213-
however, you can debug a rebuild at least a little by by setting the `CARGO_LOG`
213+
however, you can debug a rebuild at least a little by setting the `CARGO_LOG`
214214
environment variable:
215215

216216
```sh
@@ -233,7 +233,7 @@ Some issues we've seen historically which can cause crates to get rebuilt are:
233233

234234
* Two successive Cargo builds may differ in the set of features enabled for some
235235
dependencies. For example if the first build command builds the whole
236-
workspace and the second command builds only one crate, this may causes a
236+
workspace and the second command builds only one crate, this may cause a
237237
dependency on crates.io to have a different set of features enabled, causing
238238
it and everything that depends on it to get rebuilt. There's unfortunately not
239239
really a great fix for this, although if possible it's best to have the set of
@@ -243,7 +243,7 @@ Some issues we've seen historically which can cause crates to get rebuilt are:
243243
* Some filesystems exhibit unusual behavior around timestamps. Cargo primarily
244244
uses timestamps on files to govern whether rebuilding needs to happen, but if
245245
you're using a nonstandard filesystem it may be affecting the timestamps
246-
somehow (e.g. truncating them, causing them to drift, etc). In this scenario
246+
somehow (e.g. truncating them, causing them to drift, etc). In this scenario,
247247
feel free to open an issue and we can see if we can accomodate the filesystem
248248
somehow.
249249

0 commit comments

Comments
 (0)