about summary refs log tree commit diff
path: root/src/doc
diff options
context:
space:
mode:
authorAlcaro <floating@muncher.se>2018-09-29 00:03:40 +0200
committerWho? Me?! <mark-i-m@users.noreply.github.com>2018-09-28 20:04:05 -0500
commit27c18dc09bd6326ecc21557cec0c79a5df699fd7 (patch)
tree65b81617ff9e8957f1fbbcce40a0e71b6b0bd1ff /src/doc
parent13a681629b7049190f0444899e366c58b33d8401 (diff)
downloadrust-27c18dc09bd6326ecc21557cec0c79a5df699fd7.tar.gz
rust-27c18dc09bd6326ecc21557cec0c79a5df699fd7.zip
conventions: Fix semicolon/colon typo
Diffstat (limited to 'src/doc')
-rw-r--r--src/doc/rustc-dev-guide/src/conventions.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/conventions.md b/src/doc/rustc-dev-guide/src/conventions.md
index 93c5c44be79..d392ebd5722 100644
--- a/src/doc/rustc-dev-guide/src/conventions.md
+++ b/src/doc/rustc-dev-guide/src/conventions.md
@@ -69,7 +69,7 @@ for something that you want to get back to before you land your PR:
 ```rust,ignore
 fn do_something() {
     if something_else {
-        unimplemented!(): // TODO write this
+        unimplemented!(); // TODO write this
     }
 }
 ```