diff options
| author | Timo <timorcb@gmail.com> | 2019-02-17 22:14:38 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-02-17 22:14:38 -0500 |
| commit | 99eccaa120fe1af7345a96f716ba37ff3492cff1 (patch) | |
| tree | 29913e480606d0005fdb4f58f30237e15c148368 | |
| parent | 508b41ecef95d2cb2c8c3e8db0a0a4045e037bd2 (diff) | |
| download | rust-99eccaa120fe1af7345a96f716ba37ff3492cff1.tar.gz rust-99eccaa120fe1af7345a96f716ba37ff3492cff1.zip | |
Add a semicolon as suggested
| -rw-r--r-- | clippy_lints/src/misc.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/misc.rs b/clippy_lints/src/misc.rs index a3aa5589cad..018fdb08316 100644 --- a/clippy_lints/src/misc.rs +++ b/clippy_lints/src/misc.rs @@ -215,7 +215,7 @@ declare_clippy_lint! { /// /// **Example:** /// ```rust -/// const ONE = 1.00f64 +/// const ONE = 1.00f64; /// x == ONE // where both are floats /// ``` declare_clippy_lint! { |
