about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorTshepang Mbambo <tshepang@gmail.com>2022-07-18 07:17:36 +0200
committerTshepang Mbambo <tshepang@gmail.com>2022-07-19 09:56:55 +0200
commit11f9e8c05a909d1d844ff61b953b6f2862ddd11f (patch)
treeac2a6958e9775730ff1b478c68f60a031935cc62 /src/doc/rustc-dev-guide
parent08ed4b72db79c4054c278199304b02604bdb8ca4 (diff)
downloadrust-11f9e8c05a909d1d844ff61b953b6f2862ddd11f.tar.gz
rust-11f9e8c05a909d1d844ff61b953b6f2862ddd11f.zip
remove stray markup
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/opaque-types-impl-trait-inference.md2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/doc/rustc-dev-guide/src/opaque-types-impl-trait-inference.md b/src/doc/rustc-dev-guide/src/opaque-types-impl-trait-inference.md
index 14e1923d4d4..52d2127bf52 100644
--- a/src/doc/rustc-dev-guide/src/opaque-types-impl-trait-inference.md
+++ b/src/doc/rustc-dev-guide/src/opaque-types-impl-trait-inference.md
@@ -12,8 +12,6 @@ it can work across functions and function bodies.
 
 To help explain how it works, let's consider an example.
 
-###
-
 ```rust
 mod m {
     pub type Seq<T> = impl IntoIterator<Item = T>;