From 7dd7bea3ac8ebaa6059e885c24d1388d2c7d03ac Mon Sep 17 00:00:00 2001 From: Oliver Schneider Date: Mon, 11 May 2015 16:46:24 +0200 Subject: [PATCH] trpl: item macros must be followed by a semicolon --- src/doc/trpl/compiler-plugins.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/trpl/compiler-plugins.md b/src/doc/trpl/compiler-plugins.md index 9eb22a7f6985a..127e097c34f7d 100644 --- a/src/doc/trpl/compiler-plugins.md +++ b/src/doc/trpl/compiler-plugins.md @@ -176,7 +176,7 @@ for a full example, the core of which is reproduced here: ```ignore declare_lint!(TEST_LINT, Warn, - "Warn about items named 'lintme'") + "Warn about items named 'lintme'"); struct Pass;