about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndre Bogus <bogusandre@gmail.com>2019-02-20 17:59:17 +0100
committerAndre Bogus <bogusandre@gmail.com>2019-02-20 17:59:17 +0100
commit8cf3605c50978a80668d834d8262b316edba60f0 (patch)
treef168d48dd7d0b17bcd8389adcf9e429699e314c5
parentf66e4697ae286985ddefc53c3a047614568458bb (diff)
downloadrust-8cf3605c50978a80668d834d8262b316edba60f0.tar.gz
rust-8cf3605c50978a80668d834d8262b316edba60f0.zip
fix typo
-rw-r--r--src/doc/rustdoc/src/documentation-tests.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustdoc/src/documentation-tests.md b/src/doc/rustdoc/src/documentation-tests.md
index 242167aa917..c9acd3c307b 100644
--- a/src/doc/rustdoc/src/documentation-tests.md
+++ b/src/doc/rustdoc/src/documentation-tests.md
@@ -244,7 +244,7 @@ disambiguate the error type:
 /// use std::io;
 /// let mut input = String::new();
 /// io::stdin().read_line(&mut input)?;
-/// # Ok::<(), io:Error>(())
+/// # Ok::<(), io::Error>(())
 /// ```
 ```