Skip to content

Commit 906b5fd

Browse files
cuvipercalebcartwright
authored andcommitted
Fix "rusftmt" typos
1 parent f817383 commit 906b5fd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: Configurations.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ To enable unstable options, set `unstable_features = true` in `rustfmt.toml` or
1515

1616
## Configuration file resolution
1717

18-
As mentioned above, rusftmt searches for a `rustfmt.toml` or `.rustfmt.toml` in the directory it is
18+
As mentioned above, rustfmt searches for a `rustfmt.toml` or `.rustfmt.toml` in the directory it is
1919
run and all parent directories.
2020

2121
If none of these directories contain such a file, both your home directory and a directory called `rustfmt` in your [global config directory](https://docs.rs/dirs/1.0.4/dirs/fn.config_dir.html) (e.g. `.config/rustfmt/`) are checked as well.
@@ -34,22 +34,22 @@ outer
3434
|-- lib_inner.rs
3535
```
3636

37-
Where `outer/rusftmt.toml` is
37+
Where `outer/rustfmt.toml` is
3838

3939
```toml
4040
max_width = 80
4141
array_width = 50
4242
ignore = ['inner/inner.rs']
4343
```
4444

45-
and `outer/inner/rusftmt.toml` is
45+
and `outer/inner/rustfmt.toml` is
4646

4747
```toml
4848
max_width = 70
4949
ignore = ['./lib_inner.rs']
5050
```
5151

52-
If run in the `inner` directory, rusftmt's internal configuration will include
52+
If run in the `inner` directory, rustfmt's internal configuration will include
5353

5454
```toml
5555
max_width = 70

0 commit comments

Comments
 (0)