diff options
| author | Oliver Schneider <github6541940@oli-obk.de> | 2015-05-11 16:46:24 +0200 |
|---|---|---|
| committer | Oliver Schneider <github6541940@oli-obk.de> | 2015-05-11 16:46:24 +0200 |
| commit | 7dd7bea3ac8ebaa6059e885c24d1388d2c7d03ac (patch) | |
| tree | 4c77f3a5e353b63fc66524047faeaa0a3b038954 | |
| parent | 8004fc9fe0591f9537c0f6e993234eb86989c538 (diff) | |
| download | rust-7dd7bea3ac8ebaa6059e885c24d1388d2c7d03ac.tar.gz rust-7dd7bea3ac8ebaa6059e885c24d1388d2c7d03ac.zip | |
trpl: item macros must be followed by a semicolon
| -rw-r--r-- | src/doc/trpl/compiler-plugins.md | 2 |
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; |
