@@ -42,13 +42,13 @@ impl<'tcx> LateLintPass<'tcx> for OverflowCheckConditional {
4242 if let BinOpKind :: Lt = op. node {
4343 if let BinOpKind :: Add = op2. node {
4444 span_lint( cx, OVERFLOW_CHECK_CONDITIONAL , expr. span,
45- "You are trying to use classic C overflow conditions that will fail in Rust. " ) ;
45+ "you are trying to use classic C overflow conditions that will fail in Rust" ) ;
4646 }
4747 }
4848 if let BinOpKind :: Gt = op. node {
4949 if let BinOpKind :: Sub = op2. node {
5050 span_lint( cx, OVERFLOW_CHECK_CONDITIONAL , expr. span,
51- "You are trying to use classic C underflow conditions that will fail in Rust. " ) ;
51+ "you are trying to use classic C underflow conditions that will fail in Rust" ) ;
5252 }
5353 }
5454 }
@@ -67,13 +67,13 @@ impl<'tcx> LateLintPass<'tcx> for OverflowCheckConditional {
6767 if let BinOpKind :: Gt = op. node {
6868 if let BinOpKind :: Add = op2. node {
6969 span_lint( cx, OVERFLOW_CHECK_CONDITIONAL , expr. span,
70- "You are trying to use classic C overflow conditions that will fail in Rust. " ) ;
70+ "you are trying to use classic C overflow conditions that will fail in Rust" ) ;
7171 }
7272 }
7373 if let BinOpKind :: Lt = op. node {
7474 if let BinOpKind :: Sub = op2. node {
7575 span_lint( cx, OVERFLOW_CHECK_CONDITIONAL , expr. span,
76- "You are trying to use classic C underflow conditions that will fail in Rust. " ) ;
76+ "you are trying to use classic C underflow conditions that will fail in Rust" ) ;
7777 }
7878 }
7979 }
0 commit comments