diff options
| author | Tshepang Lekhonkhobe <tshepang@gmail.com> | 2015-07-05 14:45:24 +0200 |
|---|---|---|
| committer | Tshepang Lekhonkhobe <tshepang@gmail.com> | 2015-07-05 14:45:55 +0200 |
| commit | 73c1f242e311076067bcacad4e41899c1bd020af (patch) | |
| tree | b2294f514033b0d74b2705ec90630a26059a070e /src/doc/reference.md | |
| parent | 912ab64a0de2c121a1c9f10bb1dbe75983b78c73 (diff) | |
| download | rust-73c1f242e311076067bcacad4e41899c1bd020af.tar.gz rust-73c1f242e311076067bcacad4e41899c1bd020af.zip | |
reference: tiny fixes
One is for grammar, and the other is for clarity
Diffstat (limited to 'src/doc/reference.md')
| -rw-r--r-- | src/doc/reference.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/reference.md b/src/doc/reference.md index a3e13acccae..cd70bb9748b 100644 --- a/src/doc/reference.md +++ b/src/doc/reference.md @@ -2966,7 +2966,7 @@ move values (depending on their type) from the environment into the lambda expression's captured environment. In this example, we define a function `ten_times` that takes a higher-order -function argument, and call it with a lambda expression as an argument: +function argument, and we then call it with a lambda expression as an argument: ``` fn ten_times<F>(f: F) where F: Fn(i32) { @@ -3489,7 +3489,7 @@ x = bo(5,7); #### Function types for specific items -Internally to the compiler, there are also function types that are specific to a particular +Internal to the compiler, there are also function types that are specific to a particular function item. In the following snippet, for example, the internal types of the functions `foo` and `bar` are different, despite the fact that they have the same signature: |
