Skip to content

Commit b404892

Browse files
committed
---
yaml --- r: 15469 b: refs/heads/try c: d85e488 h: refs/heads/master i: 15467: 9edc4ab v: v3
1 parent e3b8271 commit b404892

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
refs/heads/master: 61b1875c16de39c166b0f4d54bba19f9c6777d1a
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 4a81779abd786ff22d71434c6d9a5917ea4cdfff
5-
refs/heads/try: f099359cfa0cb8abf500df8e4ba1f8054b97416e
5+
refs/heads/try: d85e48840d5a0a49ae3e6c87e69105443f20a7a7
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105

branches/try/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)