about summary refs log tree commit diff
path: root/src/libcore/convert.rs
diff options
context:
space:
mode:
authorChris Gregory <czipperz@gmail.com>2019-04-13 10:34:42 -0500
committerChris Gregory <czipperz@gmail.com>2019-04-13 10:34:52 -0500
commit6bf94cd3ff4af69c8128fb64d28a60f6c9385c19 (patch)
tree3815c34a7aefa0c24019d85c7665563e0b8c6049 /src/libcore/convert.rs
parenteba03d462e987a969d21aa74632e4d96dbe9751e (diff)
downloadrust-6bf94cd3ff4af69c8128fb64d28a60f6c9385c19.tar.gz
rust-6bf94cd3ff4af69c8128fb64d28a60f6c9385c19.zip
Remove dangling ` in Into documentation
Diffstat (limited to 'src/libcore/convert.rs')
-rw-r--r--src/libcore/convert.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/convert.rs b/src/libcore/convert.rs
index dbe0d204aca..e981001bd64 100644
--- a/src/libcore/convert.rs
+++ b/src/libcore/convert.rs
@@ -214,7 +214,7 @@ pub trait AsMut<T: ?Sized> {
 /// # Generic Implementations
 ///
 /// - [`From`]`<T> for U` implies `Into<U> for T`
-/// - [`Into`]` is reflexive, which means that `Into<T> for T` is implemented
+/// - [`Into`] is reflexive, which means that `Into<T> for T` is implemented
 ///
 /// # Implementing `Into` for conversions to external types
 ///