Skip to content

Commit cd34513

Browse files
committed
---
yaml --- r: 21961 b: refs/heads/snap-stage3 c: 3480986 h: refs/heads/master i: 21959: a7972d4 v: v3
1 parent f19c122 commit cd34513

File tree

4 files changed

+7
-11
lines changed

4 files changed

+7
-11
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: e430a699f2c60890d9b86069fd0c68a70ece7120
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 0bd02b113c02c1b3eea33cc339d71697a316d412
4+
refs/heads/snap-stage3: 3480986408b2a9ea07a3eaf849942ac3cb797b5d
55
refs/heads/try: ffbe0e0e00374358b789b0037bcb3a577cd218be
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/src/libcore/at_vec.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! Shared Vectors
1+
//! Managed vectors
22
33
use ptr::addr_of;
44

branches/snap-stage3/src/libcore/box.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! Operations on shared box types
1+
//! Operations on managed box types
22
33
// NB: transitionary, de-mode-ing.
44
#[forbid(deprecated_mode)];

branches/snap-stage3/src/libcore/char.rs

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ pure fn is_uppercase(c: char) -> bool {
6969
}
7070

7171
/**
72-
* Indicates whether a character is whitespace, defined in
72+
* Indicates whether a character is whitespace. Whitespace is defined in
7373
* terms of the Unicode General Categories 'Zs', 'Zl', 'Zp'
7474
* additional 'Cc'-category control codes in the range [0x09, 0x0d]
7575
*/
@@ -81,9 +81,9 @@ pure fn is_whitespace(c: char) -> bool {
8181
}
8282

8383
/**
84-
* Indicates whether a character is alphanumeric, defined
85-
* in terms of the Unicode General Categories 'Nd',
86-
* 'Nl', 'No' and the Derived Core Property 'Alphabetic'.
84+
* Indicates whether a character is alphanumeric. Alphanumericness is
85+
* defined in terms of the Unicode General Categories 'Nd', 'Nl', 'No'
86+
* and the Derived Core Property 'Alphabetic'.
8787
*/
8888
pure fn is_alphanumeric(c: char) -> bool {
8989
return unicode::derived_property::Alphabetic(c) ||
@@ -107,10 +107,6 @@ pure fn is_digit(c: char) -> bool {
107107
/**
108108
* Convert a char to the corresponding digit.
109109
*
110-
* # Safety note
111-
*
112-
* This function returns none if `c` is not a valid char
113-
*
114110
* # Return value
115111
*
116112
* If `c` is between '0' and '9', the corresponding value

0 commit comments

Comments
 (0)