diff options
| author | Ian Kronquist <iankronquist@gmail.com> | 2019-11-25 16:30:46 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-11-25 16:30:46 -0800 |
| commit | aef266289680ba39b41fd1e3333b572c84bc67aa (patch) | |
| tree | c592ddff9f4e51a138255219ddad40323e3e4f7b | |
| parent | b13f4e4fafa59402be86f377e360cba215818f8a (diff) | |
| download | rust-aef266289680ba39b41fd1e3333b572c84bc67aa.tar.gz rust-aef266289680ba39b41fd1e3333b572c84bc67aa.zip | |
Update literal_representation.rs
| -rw-r--r-- | clippy_lints/src/literal_representation.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/literal_representation.rs b/clippy_lints/src/literal_representation.rs index 2d50d64fc65..eba6a4fdbb9 100644 --- a/clippy_lints/src/literal_representation.rs +++ b/clippy_lints/src/literal_representation.rs @@ -35,7 +35,7 @@ declare_clippy_lint! { /// **Known problems:** /// - Recommends a signed suffix, even though the number might be too big and an unsigned /// suffix is required - /// - Does not match on `_128` since that is a valid grouping for decimal numbers + /// - Does not match on `_127` since that is a valid grouping for decimal and octal numbers /// /// **Example:** /// |
