Remove Incorrect Link from std::ptr::null Docs
The link works on the std::ptr docs page, but not the primitive.ptr.html page. Instead of leaving it half-broken, it is removed.
This commit is contained in:
parent
8415fa2787
commit
cbe9a1a6f4
|
@ -15,9 +15,9 @@
|
||||||
//! Working with unsafe pointers in Rust is uncommon,
|
//! Working with unsafe pointers in Rust is uncommon,
|
||||||
//! typically limited to a few patterns.
|
//! typically limited to a few patterns.
|
||||||
//!
|
//!
|
||||||
//! Use the [`null` function](fn.null.html) to create null pointers, and
|
//! Use the `null` function to create null pointers, and the `is_null` method
|
||||||
//! the `is_null` method of the `*const T` type to check for null.
|
//! of the `*const T` type to check for null. The `*const T` type also defines
|
||||||
//! The `*const T` type also defines the `offset` method, for pointer math.
|
//! the `offset` method, for pointer math.
|
||||||
//!
|
//!
|
||||||
//! # Common ways to create unsafe pointers
|
//! # Common ways to create unsafe pointers
|
||||||
//!
|
//!
|
||||||
|
|
Loading…
Reference in New Issue