Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(429)

Unified Diff: tests/corelib_strong/regexp/ranges-and-escaped-hyphens_test.dart

Issue 2850783002: Dart SDK Spelling b, c, and d. (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tests/corelib_strong/regexp/ranges-and-escaped-hyphens_test.dart
diff --git a/tests/corelib_strong/regexp/ranges-and-escaped-hyphens_test.dart b/tests/corelib_strong/regexp/ranges-and-escaped-hyphens_test.dart
index a3cdc06936f4462f34df2e2498fd45512ea23ef2..7c03503a077fbf614b7a633fb268b171a89af64c 100644
--- a/tests/corelib_strong/regexp/ranges-and-escaped-hyphens_test.dart
+++ b/tests/corelib_strong/regexp/ranges-and-escaped-hyphens_test.dart
@@ -47,7 +47,7 @@ void main() {
shouldBe(regexp01d, ["123 5"]);
var regexp01e = new RegExp(r"[1-35\s5]+").firstMatch("-123 54");
shouldBe(regexp01e, ["123 5"]);
- // hyphens are normal charaters if a range is not fully specified.
+ // hyphens are normal characters if a range is not fully specified.
var regexp01f = new RegExp(r"[-3]+").firstMatch("2-34");
shouldBe(regexp01f, ["-3"]);
var regexp01g = new RegExp(r"[2-]+").firstMatch("12-3");
« no previous file with comments | « tests/corelib/throw_half_surrogate_pair_test.dart ('k') | tests/corelib_strong/regexp/regress-regexp-codeflush_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698