diff --git a/README.md b/README.md index 99632a5..a012243 100644 --- a/README.md +++ b/README.md @@ -26,14 +26,14 @@ new Properties () var keys = this.keys (); console.log ("keys: " + keys); //Prints: keys: p1,p2,p3,p4 keys.forEach (function (key){ - console.log (key + ":" + me.get (key)); + console.log (key + ": " + me.get (key)); }); /* Prints: - p1:v1 - p2:null - p3:v3 - p4:null + p1: v1 + p2: null + p3: v3 + p4: null */ }); }); diff --git a/examples/writeRead.js b/examples/writeRead.js index 8da1a21..12fe3a9 100644 --- a/examples/writeRead.js +++ b/examples/writeRead.js @@ -11,7 +11,7 @@ new Properties () var keys = this.keys (); console.log ("keys: " + keys); keys.forEach (function (key){ - console.log (key + ":" + me.get (key)); + console.log (key + ": " + me.get (key)); }); }); }); \ No newline at end of file