Skip to content

Commit d85e488

Browse files
committed
Trivial change to force a doc rebuild.
1 parent f099359 commit d85e488

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libcore/ptr.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,10 @@ unsafe fn position<T>(buf: *T, f: fn(T) -> bool) -> uint {
6868
#[inline(always)]
6969
pure fn null<T>() -> *T unsafe { ret unsafe::reinterpret_cast(0u); }
7070

71-
#[doc = "Returns true if the pointer is equal to the null pointer"]
71+
#[doc = "Returns true if the pointer is equal to the null pointer."]
7272
pure fn is_null<T>(ptr: *const T) -> bool { ptr == null() }
7373

74-
#[doc = "Returns true if the pointer is not equal to the null pointer"]
74+
#[doc = "Returns true if the pointer is not equal to the null pointer."]
7575
pure fn is_not_null<T>(ptr: *const T) -> bool { !is_null(ptr) }
7676

7777
#[doc = "

0 commit comments

Comments
 (0)