diff options
| author | Jacob Pratt <jacob@jhpratt.dev> | 2023-02-18 00:13:50 +0000 |
|---|---|---|
| committer | Jacob Pratt <jacob@jhpratt.dev> | 2023-02-19 03:46:03 +0000 |
| commit | ff052eec8057748bf21e247432e6490c3d2375f7 (patch) | |
| tree | 77063e13877788e23145c9a71673e9c3401c546e /tests | |
| parent | 231bcd131d109d41e5705f48b9c5a6e70c98ff80 (diff) | |
| download | rust-ff052eec8057748bf21e247432e6490c3d2375f7.tar.gz rust-ff052eec8057748bf21e247432e6490c3d2375f7.zip | |
Use restricted Damerau-Levenshtein algorithm
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/ui/check-cfg/invalid-cfg-value.stderr | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/ui/check-cfg/invalid-cfg-value.stderr b/tests/ui/check-cfg/invalid-cfg-value.stderr index 60abcb18824..83383ea61a4 100644 --- a/tests/ui/check-cfg/invalid-cfg-value.stderr +++ b/tests/ui/check-cfg/invalid-cfg-value.stderr @@ -2,7 +2,9 @@ warning: unexpected `cfg` condition value --> $DIR/invalid-cfg-value.rs:7:7 | LL | #[cfg(feature = "sedre")] - | ^^^^^^^^^^^^^^^^^ + | ^^^^^^^^^^------- + | | + | help: did you mean: `"serde"` | = note: expected values for `feature` are: full, serde = note: `#[warn(unexpected_cfgs)]` on by default |
