From 97301434cded4b6dd0413650aa82cb8f507e5f94 Mon Sep 17 00:00:00 2001 From: Bood Qian Date: Sat, 4 Feb 2017 20:11:43 +0800 Subject: [PATCH] Fix abbreviations in document --- clippy_lints/src/formatting.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clippy_lints/src/formatting.rs b/clippy_lints/src/formatting.rs index b0d111cb7452..af1036d9721c 100644 --- a/clippy_lints/src/formatting.rs +++ b/clippy_lints/src/formatting.rs @@ -47,7 +47,7 @@ declare_lint! { } /// **What it does:** Checks for possible missing comma in an array. It lints if -/// an array element is a binary op and it lies on two lines. +/// an array element is a binary operator expression and it lies on two lines. /// /// **Why is this bad?** This could lead to unexpected results. ///