From 8b06f73deffb673157b1ac0b7ed58bd5ae4b626c Mon Sep 17 00:00:00 2001 From: PCRyan Date: Fri, 18 Jun 2021 11:55:25 +0200 Subject: [PATCH] little example code fix I suspect I'm right about this. You decide. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f40b52012..a123cf461 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ gun.get('mark').get('boss').get('name').once(function(data, key){ // traverse a graph of circular references! gun.get('mark').get('boss').get('slave').once(function(data, key){ - console.log("Mark is the slave!", data); + console.log( data, " is the slave!"); }); // add both of them to a table!