From 86a5abd550b6559f00790e7b63357daaa6d7138f Mon Sep 17 00:00:00 2001 From: Cole Albon Date: Wed, 16 Nov 2016 19:14:31 -0700 Subject: [PATCH 1/2] #271 one liner fix error while assigning console --- gun.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gun.js b/gun.js index 125a56dc..5e6fe139 100644 --- a/gun.js +++ b/gun.js @@ -6,7 +6,7 @@ if(typeof window !== "undefined"){ root = window } if(typeof global !== "undefined"){ root = global } root = root || {}; - var console = root.console = root.console || {log: function(){}}; + var console = root.console || {log: function(){}}; function require(arg){ return arg.slice? require[resolve(arg)] : function(mod, path){ arg(mod = {exports: {}}); From 186b237ea5ba698dd31a7956bc5e1e562976522e Mon Sep 17 00:00:00 2001 From: Eric Schapp Date: Fri, 18 Nov 2016 10:53:00 -0600 Subject: [PATCH 2/2] Update README.md Just a quick typo fix. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7449fb4d..b5beea73 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ Try the [interactive tutorial](http://gun.js.org/think.html) in the browser (**5 ``` Then visit [http://localhost:8080](http://localhost:8080) in your browser. -### Hiroku +### Heroku ```bash git clone https://github.com/amark/gun.git cd gun