From cad27242552006e544c5024a65749b5ec6be8748 Mon Sep 17 00:00:00 2001 From: Victor Choueiri Date: Fri, 13 Jul 2018 13:00:22 +0300 Subject: [PATCH] Update IgnoreChangeTest documentation Fixes the `IgnoreChangeTest` DartDoc comment to state that changes are ignored if the returned value is `true` not `false` as previously claimed. --- lib/flutter_redux.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/flutter_redux.dart b/lib/flutter_redux.dart index f09a31e..167a486 100644 --- a/lib/flutter_redux.dart +++ b/lib/flutter_redux.dart @@ -78,7 +78,7 @@ typedef OnDisposeCallback = void Function( /// it can be best to ignore the State change while your animation completes. /// /// To ignore a change, provide a function that returns true or false. If the -/// returned value is false, the change will be ignored. +/// returned value is true, the change will be ignored. /// /// If you ignore a change, and the framework needs to rebuild the Widget, the /// `builder` function will be called with the latest `ViewModel` produced by