diff options
| author | Martin Lindhe <martin-commit@ubique.se> | 2017-11-21 15:33:45 +0100 |
|---|---|---|
| committer | Martin Lindhe <martin-commit@ubique.se> | 2017-11-21 15:33:45 +0100 |
| commit | ece9a57d1b6e10ef2ad1dffd19fd6033cdc760ee (patch) | |
| tree | 9c6d182d6229e4c1fd08fc5064a17e63bad89d89 /src/liballoc/tests | |
| parent | ebda7662dbb79ab0a9feb79d367d0818c23ff1dc (diff) | |
| download | rust-ece9a57d1b6e10ef2ad1dffd19fd6033cdc760ee.tar.gz rust-ece9a57d1b6e10ef2ad1dffd19fd6033cdc760ee.zip | |
fix some typos
Diffstat (limited to 'src/liballoc/tests')
| -rw-r--r-- | src/liballoc/tests/str.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/liballoc/tests/str.rs b/src/liballoc/tests/str.rs index 6b075e7ac0e..a14a5d32738 100644 --- a/src/liballoc/tests/str.rs +++ b/src/liballoc/tests/str.rs @@ -1427,12 +1427,12 @@ mod pattern { Reject(6, 7), Match (7, 7), ]); - make_test!(str_searcher_mulibyte_haystack, " ", "├──", [ + make_test!(str_searcher_multibyte_haystack, " ", "├──", [ Reject(0, 3), Reject(3, 6), Reject(6, 9), ]); - make_test!(str_searcher_empty_needle_mulibyte_haystack, "", "├──", [ + make_test!(str_searcher_empty_needle_multibyte_haystack, "", "├──", [ Match (0, 0), Reject(0, 3), Match (3, 3), @@ -1455,7 +1455,7 @@ mod pattern { Match (5, 6), Reject(6, 7), ]); - make_test!(char_searcher_mulibyte_haystack, ' ', "├──", [ + make_test!(char_searcher_multibyte_haystack, ' ', "├──", [ Reject(0, 3), Reject(3, 6), Reject(6, 9), |
