From 875ce77509791da81b5c1e8f0fc417fe0342d8df Mon Sep 17 00:00:00 2001 From: Ian Hickson Date: Fri, 23 Jun 2017 16:47:58 -0700 Subject: [PATCH] Fix typo in "tearDownAll" docs --- lib/test.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/test.dart b/lib/test.dart index b1cc2c175..2550bef07 100644 --- a/lib/test.dart +++ b/lib/test.dart @@ -284,7 +284,7 @@ void setUpAll(callback()) => _declarer.setUpAll(callback); /// /// **Note**: This function makes it very easy to accidentally introduce hidden /// dependencies between tests that should be isolated. In general, you should -/// prefer [tearDown], and only use [tearDOwnAll] if the callback is +/// prefer [tearDown], and only use [tearDownAll] if the callback is /// prohibitively slow. void tearDownAll(callback()) => _declarer.tearDownAll(callback);