Remove reference to 'to'

FIxes #24712
This commit is contained in:
Steve Klabnik
2015-04-24 11:01:03 -04:00
parent 1114fcd945
commit 15c3435b87

View File

@@ -11,7 +11,7 @@
//! Traits for conversions between types. //! Traits for conversions between types.
//! //!
//! The traits in this module provide a general way to talk about conversions from one type to //! 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 //! Like many traits, these are often used as bounds for generic functions, to support arguments of
//! multiple types. //! multiple types.