Skip to content

Commit f11225b

Browse files
authored
Merge pull request #302 from secona/main
fix typos in cargo-plumbing.md
2 parents b0d4f6d + 250997f commit f11225b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/2025h1/cargo-plumbing.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ Currently, Cargo's plumbing commands are
3131
- deprecated
3232
- `cargo locate-project`:
3333
- works off of a `Cargo.toml` file on disk
34-
- text or json output, undocumened json schema
34+
- text or json output, undocumented json schema
3535
- uses a pre-1.0 term for package
3636
- `cargo metadata`:
3737
- works off of `Cargo.toml`, `Cargo.lock` files on disk
3838
- uses a custom json schema
39-
- can include depednency resolution but excludes feature resolution
39+
- can include dependency resolution but excludes feature resolution
4040
- some users want this faster
4141
- some users want this to report more information
4242
- See also [open issues](https://github.com/rust-lang/cargo/issues?q=is%3Aissue%20state%3Aopen%20label%3ACommand-metadata)
@@ -93,12 +93,12 @@ Cargo's APIs may not be able to expose each of these stages and work may need to
9393

9494
The performance of piping output between these commands may be sub-par, coming from a combination of at least
9595
- Cargo's APIs may require doing more work than is needed for these stages
96-
- Cargo focuses on json for programamtic output which may prove sub-par (see also [zulip](https://rust-lang.zulipchat.com/#narrow/channel/246057-t-cargo/topic/.60cargo.20metadata.60.20performance/near/476523460))
96+
- Cargo focuses on json for programmatic output which may prove sub-par (see also [zulip](https://rust-lang.zulipchat.com/#narrow/channel/246057-t-cargo/topic/.60cargo.20metadata.60.20performance/near/476523460))
9797
- Cargo's serde structures may not be optimized
9898
- If customizing only a single step in this process,
9999
requiring serializing and deserializing through all of the other stages may be superfluous
100100

101-
Low hanging or eggregious bottlenecks may need to be addressed.
101+
Low hanging or egregious bottlenecks may need to be addressed.
102102
Otherwise, performance should wait on user feedback.
103103

104104
A schema evolution plan will need to be considered with the design of the schema.
@@ -157,4 +157,4 @@ Definitions for terms used above:
157157
* Compiler [Major Change Proposal (MCP)](https://forge.rust-lang.org/compiler/mcp.html) is used to propose a 'larger than average' change and get feedback from the compiler team.
158158
* Library [API Change Proposal (ACP)](https://std-dev-guide.rust-lang.org/development/feature-lifecycle.html) describes a change to the standard library.
159159

160-
## Frequently asked questions
160+
## Frequently asked questions

0 commit comments

Comments
 (0)