From f452ec16c677c3970c38cbe101bcd38c58ece9ce Mon Sep 17 00:00:00 2001 From: Pascal Hertleif Date: Tue, 14 Apr 2015 22:56:58 +0200 Subject: [PATCH] Fix Link to std::ptr::null --- src/libcore/ptr.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/ptr.rs b/src/libcore/ptr.rs index a622ef78a21a4..e12ac3c39ff6c 100644 --- a/src/libcore/ptr.rs +++ b/src/libcore/ptr.rs @@ -15,7 +15,7 @@ //! Working with unsafe pointers in Rust is uncommon, //! typically limited to a few patterns. //! -//! Use the [`null` function](fn.null.html) to create null pointers, and +//! Use the [`null` function](ptr/fn.null.html) 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. //!