diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2017-07-05 14:57:26 -0700 |
|---|---|---|
| committer | John Kåre Alsaker <john.kare.alsaker@gmail.com> | 2017-07-28 15:46:23 +0200 |
| commit | 17c749f3eee953e204462870e68b64712a5c3576 (patch) | |
| tree | 8d8646f6ab4e25b1ee09359c936a18f27e9d376a /src/libcore | |
| parent | d861982ca6a1fa5773373362771aa08b9f732de0 (diff) | |
| download | rust-17c749f3eee953e204462870e68b64712a5c3576.tar.gz rust-17c749f3eee953e204462870e68b64712a5c3576.zip | |
Fix tidy warnings
Diffstat (limited to 'src/libcore')
| -rw-r--r-- | src/libcore/ops/generator.rs | 2 |
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>; } |
