We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8415fa2 commit cbe9a1aCopy full SHA for cbe9a1a
src/libcore/ptr.rs
@@ -15,9 +15,9 @@
15
//! Working with unsafe pointers in Rust is uncommon,
16
//! typically limited to a few patterns.
17
//!
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.
+//! Use the `null` function to create null pointers, and the `is_null` method
+//! of the `*const T` type to check for null. The `*const T` type also defines
+//! the `offset` method, for pointer math.
21
22
//! # Common ways to create unsafe pointers
23
0 commit comments