about summary refs log tree commit diff
diff options
context:
space:
mode:
authorChristian <chris_veenman@hotmail.com>2019-08-24 13:38:09 +0200
committerChristian <chris_veenman@hotmail.com>2019-08-24 13:38:09 +0200
commit55f8dde6c89e3af68d4c59232f3d06e6130e9f0a (patch)
tree82bfc6f696264c71dc67f20b7765780834cdd34b
parenta577316b0a136b5ca980032cf1dbe683103ba15f (diff)
downloadrust-55f8dde6c89e3af68d4c59232f3d06e6130e9f0a.tar.gz
rust-55f8dde6c89e3af68d4c59232f3d06e6130e9f0a.zip
Added an extra line to make the formatting conform to the rest of the document.
-rw-r--r--src/libcore/ops/function.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libcore/ops/function.rs b/src/libcore/ops/function.rs
index 9bb1ae8572b..4a0a2720fe4 100644
--- a/src/libcore/ops/function.rs
+++ b/src/libcore/ops/function.rs
@@ -184,6 +184,7 @@ pub trait FnMut<Args> : FnOnce<Args> {
 /// [nomicon]: ../../nomicon/hrtb.html
 ///
 /// # Examples
+///
 /// ## Using a `FnOnce` parameter
 ///
 /// ```