Skip to content

Commit a6cc3e5

Browse files
committed
---
yaml --- r: 32731 b: refs/heads/dist-snap c: 3480986 h: refs/heads/master i: 32729: 5ae323e 32727: 1aaa1f1 v: v3
1 parent 9223c53 commit a6cc3e5

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
@@ -7,6 +7,6 @@ refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: d0c6ce338884ee21843f4b40bf6bf18d222ce5df
99
refs/heads/incoming: d9317a174e434d4c99fc1a37fd7dc0d2f5328d37
10-
refs/heads/dist-snap: 0bd02b113c02c1b3eea33cc339d71697a316d412
10+
refs/heads/dist-snap: 3480986408b2a9ea07a3eaf849942ac3cb797b5d
1111
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1212
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/dist-snap/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/dist-snap/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/dist-snap/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)