Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Jens Arps committed Nov 23, 2011
1 parent bc57d0a commit a0f50ad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions example/quicktest/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@

/* methods for walking thorugh the data ops: */

var lastnames = ['smith','miller','doe','frankenstein','furter'],
firstnames = ['peter','john','frank', 'james'];
var lastnames = ['Smith','Miller','Doe','Frankenstein','Furter'],
firstnames = ['Peter','John','Frank', 'James'];

function testWrite(store){
store = store || store_1_1;
var dataObj = {
lastname: lastnames[Math.floor(Math.random()*5)],
firstanme: firstnames[Math.floor(Math.random()*4)],
firstname: firstnames[Math.floor(Math.random()*4)],
age: Math.floor(Math.random() * (100 - 20)) + 20
};
store.put(dataObj, function(result){
Expand Down

0 comments on commit a0f50ad

Please sign in to comment.