From b40e80f039afb01fefca508e7f7c5d31fa280a6a Mon Sep 17 00:00:00 2001 From: Manish Goregaokar Date: Mon, 23 Nov 2015 16:34:23 +0530 Subject: [PATCH] spurious newline --- src/methods.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/methods.rs b/src/methods.rs index b8c640254..e40531a4d 100644 --- a/src/methods.rs +++ b/src/methods.rs @@ -85,7 +85,7 @@ impl LateLintPass for MethodsPass { if has_debug_impl(error_type, cx) { span_lint(cx, OK_EXPECT, expr.span, "called `ok().expect()` on a Result \ - value. You can call `expect` directly + value. You can call `expect` directly \ on the `Result`"); } }