From 1a08d794542e361033bf2e4ce0f3c75bbfc8eb28 Mon Sep 17 00:00:00 2001 From: DegrangeM <53106394+DegrangeM@users.noreply.github.com> Date: Thu, 6 May 2021 07:31:26 +0200 Subject: [PATCH] Fix documentation (#253) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 690aa18..53abf46 100644 --- a/README.md +++ b/README.md @@ -142,7 +142,7 @@ function invoke(action, version, params={}) { }); } -await invoke('createDeck', {deck: 'test1'}); +await invoke('createDeck', 6, {deck: 'test1'}); const result = await invoke('deckNames', 6); console.log(`got list of decks: ${result}`); ```