diff options
| author | Piotr Szotkowski <chastell@chastell.net> | 2014-10-26 18:15:08 +0100 |
|---|---|---|
| committer | Piotr Szotkowski <chastell@chastell.net> | 2014-10-26 18:15:08 +0100 |
| commit | 16bae692befd021d2fd2945b42f8f9b72389e1fd (patch) | |
| tree | 685bcb507cd19da192de47041bc9ed0badb771c1 | |
| parent | 4eedd873ec74dd67eb36808b5694e4834d0785ad (diff) | |
| download | rust-16bae692befd021d2fd2945b42f8f9b72389e1fd.tar.gz rust-16bae692befd021d2fd2945b42f8f9b72389e1fd.zip | |
Guide: Closures fix suggested by @cakebaker
| -rw-r--r-- | src/doc/guide.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/guide.md b/src/doc/guide.md index 9f84541e2d1..3fe8463d66f 100644 --- a/src/doc/guide.md +++ b/src/doc/guide.md @@ -4210,7 +4210,7 @@ Doing this is not particularly common, but it's useful every once in a while. That's all you need to get the hang of closures! Closures are a little bit strange at first, but once you're used to them, you'll miss them in other languages. Passing functions to other functions is -incredibly powerful; let's look at one of such situations: iterators. +incredibly powerful, as you will see in the following chapter about iterators. # Iterators |
