From 2f40a000fccd52ce8f34b1e5423c71525b31010b Mon Sep 17 00:00:00 2001 From: Paul Bernier Date: Sat, 16 Feb 2019 16:30:23 +1300 Subject: [PATCH] Replace confusing use of 'action' by 'mutation' --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 55ab273..da06cff 100644 --- a/README.md +++ b/README.md @@ -79,7 +79,7 @@ Available options for `createPersistedState()` ```javascript createPersistedState({ - whitelist: ["whitelistedAction", "anotherWhitelistedAction"], + whitelist: ["whitelistedMutation", "anotherWhitelistedMutation"], // or @@ -89,7 +89,7 @@ createPersistedState({ // or - blacklist: ["ignoredAction", "anotherIgnoredAction"], + blacklist: ["ignoredMutation", "anotherIgnoredMutation"], // or