@@ -5,7 +5,7 @@ find it useful if you want to contribute to Cargo or if you are
55interested in the inner workings of Cargo.
66
77The purpose of Cargo is to formalize a canonical Rust workflow, by automating
8- the standard tasks associated with distributing software. Cargo simplifies
8+ the standard tasks associated with distributing software. Cargo simplifies
99structuring a new project, adding dependencies, writing and running unit tests,
1010and more.
1111
@@ -58,7 +58,7 @@ the local hard drive.
5858
5959` Resolve ` is the representation of a directed acyclic graph of package
6060dependencies, which uses ` PackageId ` s for nodes. This is the data
61- structure that is saved to the lock file. If there is no lockfile ,
61+ structure that is saved to the lock file. If there is no lock file ,
6262Cargo constructs a resolve by finding a graph of packages which
6363matches declared dependency specification according to semver.
6464
@@ -118,14 +118,14 @@ to nightly rustc).
118118
119119Cargo uses [ ` env_logger ` ] ( https://docs.rs/env_logger/*/env_logger/ ) , so you can set
120120` RUST_LOG ` environment variable to get the logs. This is useful both for diagnosing
121- bugs in stable Cargo and for local development. Cargo also has internal hierarchical
122- profiling infrastructure, which is activated via ` CARGO_PROFILE ` variable
121+ bugs in stable Cargo and for local development. Cargo also has internal hierarchical
122+ profiling infrastructure, which is activated via ` CARGO_PROFILE ` variable
123123
124124```
125- # Outputs all logs with levels debug and higher
125+ # Outputs all logs with levels debug and higher
126126$ RUST_LOG=debug cargo generate-lockfile
127127
128- # Don't forget that you can filter by module as well
128+ # Don't forget that you can filter by module as well
129129$ RUST_LOG=cargo::core::resolver=trace cargo generate-lockfile
130130
131131# Output first three levels of profiling info
0 commit comments