readme tweaks again

This commit is contained in:
Brian Carlson 2010-11-20 14:45:44 -06:00
parent 8dfcd59a77
commit e9bcd73d72

View File

@ -29,9 +29,9 @@ with love and TDD.
//handle error
return
}
var user = result.rows[0];
assert.equal(user.name, 'brianc');
assert.equal(user.birthday.getYear(), 2010);
var user = result.rows[0]
console.log(user.name) //brianc
console.log(user.birthday.getYear()) //2010
})
})