conventions: Fix semicolon/colon typo

This commit is contained in:
Alcaro 2018-09-29 00:03:40 +02:00 committed by Who? Me?!
parent ddde77fd15
commit b9d3a71115
1 changed files with 1 additions and 1 deletions

View File

@ -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
}
}
```