From 2351179c87a3d7d94854b64f7d91dc2327885e5f Mon Sep 17 00:00:00 2001 From: Edwin Martin Date: Sun, 26 Nov 2023 10:07:41 +0100 Subject: [PATCH] Small changes to readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0410886..2c89015 100644 --- a/README.md +++ b/README.md @@ -124,7 +124,7 @@ interface Config { Function to convert function arguments to a unique key. -Without a `resolver` function, the arguments are converted to a key with `json-stringify-safe`, +Without a `resolver` function, the arguments are converted to a key with a save version of JSON stringify. This works fine when the arguments are primitives like strings, numbers and booleans. This is undesirable when passing in objects with irrelevant data, like DOM elements. @@ -183,7 +183,7 @@ class Example { } southUpdated() { - // The next time getComments("south") is called in this instance, comments will + // The next time getComments("south") is called in this instance, data will // be fetched from the server again. But only for this instance. clear(this, this.getDirection, "south"); }