Skip to content

Commit

Permalink
updated docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel Llamas committed Aug 5, 2012
1 parent 688dca8 commit 4a3829e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -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
*/
});
});
Expand Down
2 changes: 1 addition & 1 deletion examples/writeRead.js
Expand Up @@ -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));
});
});
});

0 comments on commit 4a3829e

Please sign in to comment.