From 2c3e7d55fd84a45127b0908a48ab4f4c4f7152e2 Mon Sep 17 00:00:00 2001 From: bbayazit16 <86011195+bbayazit16@users.noreply.github.com> Date: Sat, 19 Feb 2022 09:59:38 +0300 Subject: [PATCH] Remove val from comment (#1207) Line 78 uses ".once", but "val" is used in comment at line 79. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 61e1b62f..cddfee36 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,7 @@ gun.get('mark').put(mark); // access the data as if it is a document. gun.get('mark').get('boss').get('name').once(function(data, key){ - // `val` grabs the data once, no subscriptions. + // `once` grabs the data once, no subscriptions. console.log("Mark's boss is", data); });