about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2017-07-05 14:57:26 -0700
committerJohn Kåre Alsaker <john.kare.alsaker@gmail.com>2017-07-28 15:46:23 +0200
commit17c749f3eee953e204462870e68b64712a5c3576 (patch)
tree8d8646f6ab4e25b1ee09359c936a18f27e9d376a /src/libcore
parentd861982ca6a1fa5773373362771aa08b9f732de0 (diff)
downloadrust-17c749f3eee953e204462870e68b64712a5c3576.tar.gz
rust-17c749f3eee953e204462870e68b64712a5c3576.zip
Fix tidy warnings
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/ops/generator.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/ops/generator.rs b/src/libcore/ops/generator.rs
index 92330ad6333..2a88c842a8f 100644
--- a/src/libcore/ops/generator.rs
+++ b/src/libcore/ops/generator.rs
@@ -33,6 +33,6 @@ pub trait Generator<Arg = ()> {
     /// The type of value this generator returns.
     type Return;
 
-    /// This resumes the execution of the generator. 
+    /// This resumes the execution of the generator.
     fn resume(&mut self, arg: Arg) -> State<Self::Yield, Self::Return>;
 }