Skip to content

Commit 5fee0e6

Browse files
committed
---
yaml --- r: 12463 b: refs/heads/master c: d85e488 h: refs/heads/master i: 12461: 6151275 12459: f948b3e 12455: c85a33c 12447: 2249e6b v: v3
1 parent 44010bf commit 5fee0e6

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
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: f099359cfa0cb8abf500df8e4ba1f8054b97416e
2+
refs/heads/master: d85e48840d5a0a49ae3e6c87e69105443f20a7a7
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 4a81779abd786ff22d71434c6d9a5917ea4cdfff
55
refs/heads/try: 2898dcc5d97da9427ac367542382b6239d9c0bbf

trunk/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)