From 7bb411c239b219a063c065b744eec00dac11c6a4 Mon Sep 17 00:00:00 2001 From: Manish Goregaokar Date: Thu, 20 Nov 2014 12:38:27 +0530 Subject: [PATCH] more clippylike (from issue title) --- src/types.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types.rs b/src/types.rs index 625baec78fe..36513339f74 100644 --- a/src/types.rs +++ b/src/types.rs @@ -75,7 +75,7 @@ impl LintPass for TypePass { for path in dlists.iter() { if match_ty_unwrap(ty, path.as_slice()).is_some() { span_note_and_lint(cx, CLIPPY_DLIST, ty.span, - "You seem to be trying to use a DList. Perhaps you meant some other data structure?", + "I see you're using a DList! Perhaps you meant some other data structure?", "A RingBuf might work."); return; }