From a338fb737ab8eaf4c3563182a44ead617972947e Mon Sep 17 00:00:00 2001 From: Cezary Bartoszuk Date: Fri, 24 Jul 2015 22:45:03 +0100 Subject: [PATCH] Fix typo in example usage of module function. s/model/module/ --- lib/mock/test_injection.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/mock/test_injection.dart b/lib/mock/test_injection.dart index 9450dbf92..3cf9c4c78 100644 --- a/lib/mock/test_injection.dart +++ b/lib/mock/test_injection.dart @@ -123,7 +123,7 @@ inject(Function fn) { * repeatedly, as long as [inject] is not called. Invocation of [inject] creates the injector and * hence no more calls to [module] can be made. * - * setUp(module((Module model) { + * setUp(module((Module module) { * module.bind(Foo); * }); *