diff options
| -rw-r--r-- | src/librustc_passes/ast_validation.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/librustc_passes/ast_validation.rs b/src/librustc_passes/ast_validation.rs index c85cb1adb92..912036b0014 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 <https://github.com/rust-lang/rust/issues/27779#issuecomment-378416911>") + .note("for more information, see \ + <https://github.com/rust-lang/rust/issues/27779#issuecomment-378416911>") .emit(); } _ => {} |
