summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorOliver Scherer <github35764891676564198441@oli-obk.de>2019-12-23 15:11:09 +0100
committerGitHub <noreply@github.com>2019-12-23 15:11:09 +0100
commit63d28221c62be5c63d6df4ac83043d9cacd2a226 (patch)
treebdd4d1158c07973a072f1c55ab6e4ffc49300b10 /src/libcore
parent032d810e24a39aad311c15d05dfef4dc4d6829c4 (diff)
downloadrust-63d28221c62be5c63d6df4ac83043d9cacd2a226.tar.gz
rust-63d28221c62be5c63d6df4ac83043d9cacd2a226.zip
Fix typo
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/intrinsics.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/intrinsics.rs b/src/libcore/intrinsics.rs
index 544fd4fb99f..6481789c1dd 100644
--- a/src/libcore/intrinsics.rs
+++ b/src/libcore/intrinsics.rs
@@ -1337,7 +1337,7 @@ extern "rust-intrinsic" {
     /// Performs rotate right.
     /// The stabilized versions of this intrinsic are available on the integer
     /// primitives via the `rotate_right` method. For example,
-    /// [`std::u32::rotate_right`](../../std/primitive.u32.html#method.rotate_right
+    /// [`std::u32::rotate_right`](../../std/primitive.u32.html#method.rotate_right)
     #[rustc_const_stable(feature = "const_int_rotate", since = "1.40.0")]
     pub fn rotate_right<T>(x: T, y: T) -> T;