about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDale Wijnand <dale.wijnand@gmail.com>2018-11-27 16:46:59 +0000
committerDale Wijnand <dale.wijnand@gmail.com>2018-11-27 16:46:59 +0000
commit4a7ffe2646b5d152297ab8008cc64693b4fd3d0a (patch)
treef88ebe84c21251b62be8d308c060bfcb0726b988
parentafb4fbd951bc9780b5a7812f9a72aa9e2f085814 (diff)
downloadrust-4a7ffe2646b5d152297ab8008cc64693b4fd3d0a.tar.gz
rust-4a7ffe2646b5d152297ab8008cc64693b4fd3d0a.zip
Fix issue number
-rw-r--r--src/libcore/ptr.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/ptr.rs b/src/libcore/ptr.rs
index 7b93795728b..7c8b195db8f 100644
--- a/src/libcore/ptr.rs
+++ b/src/libcore/ptr.rs
@@ -2532,7 +2532,7 @@ pub fn eq<T: ?Sized>(a: *const T, b: *const T) -> bool {
 ///
 /// assert_eq!(actual, expected);
 /// ```
-#[unstable(feature = "ptr_hash", reason = "newly added", issue = "56285")]
+#[unstable(feature = "ptr_hash", reason = "newly added", issue = "56286")]
 pub fn hash<T, S: hash::Hasher>(hashee: &T, into: &mut S) {
     use hash::Hash;
     NonNull::from(hashee).hash(into)