]> git.lizzy.rs Git - rust.git/commitdiff
Rollup merge of #24772 - steveklabnik:gh24712, r=alexcrichton
authorSteve Klabnik <steve@steveklabnik.com>
Sat, 25 Apr 2015 02:54:26 +0000 (22:54 -0400)
committerSteve Klabnik <steve@steveklabnik.com>
Sat, 25 Apr 2015 02:54:26 +0000 (22:54 -0400)
FIxes #24712

src/libcore/convert.rs

index 1c1ad5fd33fb8bdfbaf142e4244853db5b469170..d9cda58d9ebedd6e364bffe388e4c5979b43c8d6 100644 (file)
@@ -11,7 +11,7 @@
 //! Traits for conversions between types.
 //!
 //! The traits in this module provide a general way to talk about conversions from one type to
-//! another. They follow the standard Rust conventions of `as`/`to`/`into`/`from`.
+//! another. They follow the standard Rust conventions of `as`/`into`/`from`.
 //!
 //! Like many traits, these are often used as bounds for generic functions, to support arguments of
 //! multiple types.