Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 69f2b8f

Browse files
committed
Updated some NITs in the documentation from rust-lang#6630
1 parent c56b328 commit 69f2b8f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

doc/adding_lints.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -581,15 +581,15 @@ in the following steps:
581581
3. Passing the configuration value to the lint impl struct:
582582

583583
First find the struct construction in the [clippy_lints lib file](/clippy_lints/src/lib.rs).
584-
Make sure that `clippy dev update_lints` added it beforehand. The configuration value is now
585-
cloned or copied into a local value that is then passed to the impl struct like this:
584+
The configuration value is now cloned or copied into a local value that is then passed to the
585+
impl struct like this:
586586
```rust
587587
// Default generated registration:
588-
store.register_late_pass(|| box module::StructName);
588+
store.register_*_pass(|| box module::StructName);
589589

590590
// New registration with configuration value
591591
let configuration_ident = conf.configuration_ident.clone();
592-
store.register_late_pass(move || box module::StructName::new(configuration_ident));
592+
store.register_*_pass(move || box module::StructName::new(configuration_ident));
593593
```
594594

595595
Congratulations the work is almost done. The configuration value can now be accessed
@@ -599,7 +599,7 @@ in the following steps:
599599
1. The default configured value can be tested like any normal lint in [`tests/ui`](/tests/ui).
600600
2. The configuration itself will be tested separately in [`tests/ui-toml`](/tests/ui-toml).
601601
Simply add a new subfolder with a fitting name. This folder contains a `clippy.toml` file
602-
with the configuration value and a rust file that should be linted by clippy. The test can
602+
with the configuration value and a rust file that should be linted by Clippy. The test can
603603
otherwise be written as usual.
604604

605605
## Cheatsheet

doc/basics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ See <https://rustc-dev-guide.rust-lang.org/contributing.html#opening-a-pr>.
109109
| HIR | High-Level Intermediate Representation |
110110
| TCX | Type context |
111111

112-
This is a concise list of abbreviations that can come up during clippy development. An extensive
112+
This is a concise list of abbreviations that can come up during Clippy development. An extensive
113113
general list can be found in the [rustc-dev-guide glossary][glossary]. Always feel free to ask if
114114
an abbreviation or meaning is unclear to you.
115115

0 commit comments

Comments
 (0)