Skip to content

Commit

Permalink
.rustfmt.toml: Fix invalid TOML
Browse files Browse the repository at this point in the history
Fixes this error when running ‘rustfmt’ or ‘cargo fmt’:

    Could not parse TOML: TOML parse error at line 5, column 17
      |
    5 | group_imports = StdExternalCrate
      |                 ^
    invalid string
    expected `"`, `'`

Signed-off-by: Anders Kaseorg <[email protected]>
  • Loading branch information
andersk authored and lilith committed Apr 24, 2024
1 parent 9ca1dbd commit 8a01879
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .rustfmt.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ max_width=120
use_small_heuristics="Max"
newline_style="Unix"
fn_args_layout="Compressed"
group_imports = StdExternalCrate
group_imports = "StdExternalCrate"

# Once these stabilize, they'd be nice
# indent_style="Visual"
Expand Down

0 comments on commit 8a01879

Please sign in to comment.