File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -236,7 +236,7 @@ And, in your `main.rs` or `lib.rs`:
236
236
```
237
237
238
238
## Configuration
239
- Some lints can be configured in a ` Clippy .toml` file. It contains basic ` variable = value ` mapping eg.
239
+ Some lints can be configured in a ` clippy .toml` file. It contains basic ` variable = value ` mapping eg.
240
240
241
241
``` toml
242
242
blacklisted-names = [" toto" , " tata" , " titi" ]
Original file line number Diff line number Diff line change @@ -114,12 +114,12 @@ mod reexport {
114
114
pub fn plugin_registrar ( reg : & mut Registry ) {
115
115
let conf = match utils:: conf:: conf_file ( reg. args ( ) ) {
116
116
Ok ( file_name) => {
117
- // if the user specified a file, it must exist, otherwise default to `Clippy .toml` but
117
+ // if the user specified a file, it must exist, otherwise default to `clippy .toml` but
118
118
// do not require the file to exist
119
119
let ( ref file_name, must_exist) = if let Some ( ref file_name) = file_name {
120
120
( & * * file_name, true )
121
121
} else {
122
- ( "Clippy .toml" , false )
122
+ ( "clippy .toml" , false )
123
123
} ;
124
124
125
125
let ( conf, errors) = utils:: conf:: read_conf ( & file_name, must_exist) ;
You can’t perform that action at this time.
0 commit comments