diff options
| author | bors <bors@rust-lang.org> | 2015-06-24 12:01:35 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-06-24 12:01:35 +0000 |
| commit | 4c7d53a202b390c0f631668618b1cc55b2fcdf67 (patch) | |
| tree | 5434413008f2f62f9758bcf72c3bdb8b32f00cc4 | |
| parent | d278632fefa32dfa218fcf4db69ca60148db939a (diff) | |
| parent | 56fd31f9a4a816e82a22787dab20cf785761f3f8 (diff) | |
Auto merge of #26529 - steveklabnik:gh26366, r=alexcrichton
Fixes #26366
| -rw-r--r-- | src/doc/style/features/traits/generics.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/style/features/traits/generics.md b/src/doc/style/features/traits/generics.md index 371420431e7..2d9356fc42d 100644 --- a/src/doc/style/features/traits/generics.md +++ b/src/doc/style/features/traits/generics.md @@ -29,7 +29,7 @@ explicitly implement to be used by this generic function. explicit conversions or other method calls would usually be necessary. See the [overloading/implicits use case](#use-case:-limited-overloading-and/or-implicit-conversions) below. -* _Precise types_. Because generic give a _name_ to the specific type +* _Precise types_. Because generics give a _name_ to the specific type implementing a trait, it is possible to be precise about places where that exact type is required or produced. For example, a function |
