about summary refs log tree commit diff
diff options
context:
space:
mode:
authorOliver Schneider <github6541940@oli-obk.de>2015-05-11 16:46:24 +0200
committerOliver Schneider <github6541940@oli-obk.de>2015-05-11 16:46:24 +0200
commit7dd7bea3ac8ebaa6059e885c24d1388d2c7d03ac (patch)
tree4c77f3a5e353b63fc66524047faeaa0a3b038954
parent8004fc9fe0591f9537c0f6e993234eb86989c538 (diff)
downloadrust-7dd7bea3ac8ebaa6059e885c24d1388d2c7d03ac.tar.gz
rust-7dd7bea3ac8ebaa6059e885c24d1388d2c7d03ac.zip
trpl: item macros must be followed by a semicolon
-rw-r--r--src/doc/trpl/compiler-plugins.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/compiler-plugins.md b/src/doc/trpl/compiler-plugins.md
index 9eb22a7f698..127e097c34f 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;