diff options
| author | Steve Klabnik <steve@steveklabnik.com> | 2015-04-24 11:01:03 -0400 |
|---|---|---|
| committer | Steve Klabnik <steve@steveklabnik.com> | 2015-04-24 11:02:07 -0400 |
| commit | 15c3435b87db2dbdfd564ab13e90b73aadd84737 (patch) | |
| tree | eaeb6eb81ed4bf60894cba23e731868c6794e32b /src/libcore/convert.rs | |
| parent | 1114fcd945f6e979660053aeed561bcfb5da669e (diff) | |
| download | rust-15c3435b87db2dbdfd564ab13e90b73aadd84737.tar.gz rust-15c3435b87db2dbdfd564ab13e90b73aadd84737.zip | |
Remove reference to 'to'
FIxes #24712
Diffstat (limited to 'src/libcore/convert.rs')
| -rw-r--r-- | src/libcore/convert.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/convert.rs b/src/libcore/convert.rs index 1c1ad5fd33f..d9cda58d9eb 100644 --- a/src/libcore/convert.rs +++ b/src/libcore/convert.rs @@ -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. |
