Skip to content

Commit 4a7ffe2

Browse files
committed
Fix issue number
1 parent afb4fbd commit 4a7ffe2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcore/ptr.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2532,7 +2532,7 @@ pub fn eq<T: ?Sized>(a: *const T, b: *const T) -> bool {
25322532
///
25332533
/// assert_eq!(actual, expected);
25342534
/// ```
2535-
#[unstable(feature = "ptr_hash", reason = "newly added", issue = "56285")]
2535+
#[unstable(feature = "ptr_hash", reason = "newly added", issue = "56286")]
25362536
pub fn hash<T, S: hash::Hasher>(hashee: &T, into: &mut S) {
25372537
use hash::Hash;
25382538
NonNull::from(hashee).hash(into)

0 commit comments

Comments
 (0)