Skip to content

Commit f3aeaeb

Browse files
committed
Rollup merge of rust-lang#24435 - killercup:patch-9, r=steveklabnik
The link works on the `std/ptr/index.html` docs page, but not the `std/primitive.pointer.html` page. Instead of leaving it half-broken, it is removed. I tried fixing this in rust-lang#24432, but @alexcrichton mentioned that this doc string was used in two places (with different base paths unfortunately). r? @alexcrichton
2 parents b11e6a3 + cbe9a1a commit f3aeaeb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/libcore/ptr.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
//! Working with unsafe pointers in Rust is uncommon,
1616
//! typically limited to a few patterns.
1717
//!
18-
//! Use the [`null` function](fn.null.html) to create null pointers, and
19-
//! the `is_null` method of the `*const T` type to check for null.
20-
//! The `*const T` type also defines the `offset` method, for pointer math.
18+
//! Use the `null` function to create null pointers, and the `is_null` method
19+
//! of the `*const T` type to check for null. The `*const T` type also defines
20+
//! the `offset` method, for pointer math.
2121
//!
2222
//! # Common ways to create unsafe pointers
2323
//!

0 commit comments

Comments
 (0)