From df98b501b241f31971d5e34002fecbbc6f8403c0 Mon Sep 17 00:00:00 2001 From: Niko Matsakis Date: Fri, 25 May 2018 04:46:42 -0400 Subject: [PATCH] pacify the mercilous tidy --- src/librustc_passes/ast_validation.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/librustc_passes/ast_validation.rs b/src/librustc_passes/ast_validation.rs index c85cb1adb9230..912036b0014c5 100644 --- a/src/librustc_passes/ast_validation.rs +++ b/src/librustc_passes/ast_validation.rs @@ -177,7 +177,8 @@ impl<'a> Visitor<'a> for AstValidator<'a> { ExprKind::ObsoleteInPlace(..) => { self.err_handler() .struct_span_err(expr.span, "emplacement syntax is obsolete (for now, anyway)") - .note("for more information, see ") + .note("for more information, see \ + ") .emit(); } _ => {}