Index: lib/src/util/io.dart |
diff --git a/lib/src/util/io.dart b/lib/src/util/io.dart |
index dc28f1ac397dc9d8675ae329001a38bfd4c4e86b..fb2632f62c43f5eae3ac525dc01714fe31b4f8d9 100644 |
--- a/lib/src/util/io.dart |
+++ b/lib/src/util/io.dart |
@@ -117,7 +117,7 @@ Future withTempDir(Future fn(String path)) { |
/// that are followed by newlines, to ensure that carriage returns aren't |
/// doubled up in the output. This can be removed when the issue is fixed in the |
/// oldest supported SDk. |
-Stream<List<int>> santizeForWindows(Stream<List<int>> input) { |
+Stream<List<int>> sanitizeForWindows(Stream<List<int>> input) { |
if (!Platform.isWindows) return input; |
return input.map((list) { |