diff options
| author | Tshepang Lekhonkhobe <tshepang@gmail.com> | 2016-02-04 22:39:15 +0200 |
|---|---|---|
| committer | Tshepang Lekhonkhobe <tshepang@gmail.com> | 2016-02-04 22:39:15 +0200 |
| commit | 69b1d75b76752ec944683be9bdb033d2ded8f77b (patch) | |
| tree | 1d018abbc075a86be8ffdb7641329530357b91af | |
| parent | b8b18aac12214d7135a083e2e6946aa197185d49 (diff) | |
| download | rust-69b1d75b76752ec944683be9bdb033d2ded8f77b.tar.gz rust-69b1d75b76752ec944683be9bdb033d2ded8f77b.zip | |
reference: make the line a little more readable
| -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 f0fdae27ac7..181d5ec18f7 100644 --- a/src/doc/reference.md +++ b/src/doc/reference.md @@ -984,8 +984,8 @@ fn first((value, _): (i32, i32)) -> i32 { value } #### Generic functions A _generic function_ allows one or more _parameterized types_ to appear in its -signature. Each type parameter must be explicitly declared, in an -angle-bracket-enclosed, comma-separated list following the function name. +signature. Each type parameter must be explicitly declared in an +angle-bracket-enclosed and comma-separated list, following the function name. ```rust,ignore // foo is generic over A and B |
