Skip to content

Commit af667ff

Browse files
committed
---
yaml --- r: 236406 b: refs/heads/auto c: 355bbfb h: refs/heads/master v: v3
1 parent fd7776c commit af667ff

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+1911
-1311
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
88
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
99
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
1010
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
11-
refs/heads/auto: 97f2a325644eb88b50fb5b52e09933535fa29c40
11+
refs/heads/auto: 355bbfb8955ffdfb2bb7940ca1b38f2bbb5defd4
1212
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c
1313
refs/tags/0.1: b19db808c2793fe2976759b85a355c3ad8c8b336
1414
refs/tags/0.2: 1754d02027f2924bed83b0160ee340c7f41d5ea1

branches/auto/mk/cfg/x86_64-unknown-netbsd.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# x86_64-unknown-netbsd configuration
2+
CROSS_PREFIX_x86_64-unknown-netbsd=x86_64-unknown-netbsd-
23
CC_x86_64-unknown-netbsd=$(CC)
34
CXX_x86_64-unknown-netbsd=$(CXX)
45
CPP_x86_64-unknown-netbsd=$(CPP)

branches/auto/mk/grammar.mk

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,17 +58,17 @@ check-lexer: $(BG) $(BG)RustLexer.class check-build-lexer-verifier
5858
$(Q)$(SG)check.sh $(S) "$(BG)" \
5959
"$(CFG_GRUN)" "$(BG)verify" "$(BG)RustLexer.tokens"
6060
else
61-
$(info cfg: grun not available, skipping lexer test...)
61+
$(info cfg: lexer tooling not available, skipping lexer test...)
6262
check-lexer:
6363

6464
endif
6565
else
66-
$(info cfg: antlr4 not available, skipping lexer test...)
66+
$(info cfg: lexer tooling not available, skipping lexer test...)
6767
check-lexer:
6868

6969
endif
7070
else
71-
$(info cfg: javac not available, skipping lexer test...)
71+
$(info cfg: lexer tooling not available, skipping lexer test...)
7272
check-lexer:
7373

7474
endif

branches/auto/src/libcollections/str.rs

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -715,8 +715,7 @@ impl str {
715715
/// Returns `None` if it doesn't exist.
716716
///
717717
/// The pattern can be a simple `&str`, `char`, or a closure that
718-
/// determines the
719-
/// split.
718+
/// determines if a character matches.
720719
///
721720
/// # Examples
722721
///
@@ -760,7 +759,7 @@ impl str {
760759
/// Returns `None` if it doesn't exist.
761760
///
762761
/// The pattern can be a simple `&str`, `char`,
763-
/// or a closure that determines the split.
762+
/// or a closure that determines if a character matches.
764763
///
765764
/// # Examples
766765
///
@@ -1096,7 +1095,7 @@ impl str {
10961095
/// An iterator over the matches of a pattern within `self`.
10971096
///
10981097
/// The pattern can be a simple `&str`, `char`, or a closure that
1099-
/// determines the split.
1098+
/// determines if a character matches.
11001099
/// Additional libraries might provide more complex patterns like
11011100
/// regular expressions.
11021101
///
@@ -1129,7 +1128,7 @@ impl str {
11291128
/// reverse order.
11301129
///
11311130
/// The pattern can be a simple `&str`, `char`, or a closure that
1132-
/// determines the split.
1131+
/// determines if a character matches.
11331132
/// Additional libraries might provide more complex patterns like
11341133
/// regular expressions.
11351134
///
@@ -1166,8 +1165,7 @@ impl str {
11661165
/// match are returned.
11671166
///
11681167
/// The pattern can be a simple `&str`, `char`, or a closure that
1169-
/// determines
1170-
/// the split.
1168+
/// determines if a character matches.
11711169
/// Additional libraries might provide more complex patterns like
11721170
/// regular expressions.
11731171
///
@@ -1214,8 +1212,7 @@ impl str {
12141212
/// match are returned.
12151213
///
12161214
/// The pattern can be a simple `&str`, `char`, or a closure that
1217-
/// determines
1218-
/// the split.
1215+
/// determines if a character matches.
12191216
/// Additional libraries might provide more complex patterns like
12201217
/// regular expressions.
12211218
///
@@ -1296,7 +1293,7 @@ impl str {
12961293
/// repeatedly removed.
12971294
///
12981295
/// The pattern can be a simple `char`, or a closure that determines
1299-
/// the split.
1296+
/// if a character matches.
13001297
///
13011298
/// # Examples
13021299
///
@@ -1326,7 +1323,7 @@ impl str {
13261323
/// repeatedly removed.
13271324
///
13281325
/// The pattern can be a simple `&str`, `char`, or a closure that
1329-
/// determines the split.
1326+
/// determines if a character matches.
13301327
///
13311328
/// # Examples
13321329
///
@@ -1346,7 +1343,7 @@ impl str {
13461343
/// repeatedly removed.
13471344
///
13481345
/// The pattern can be a simple `&str`, `char`, or a closure that
1349-
/// determines the split.
1346+
/// determines if a character matches.
13501347
///
13511348
/// # Examples
13521349
///

0 commit comments

Comments
 (0)