harthur / kittydar

Face detection for cats in JavaScript - demo for TXJS 2012 talk
http://harthur.github.com/kittydar
MIT License
1.42k stars 172 forks source link

Minor spacing error in README #2

Closed ghost closed 12 years ago

ghost commented 12 years ago
console.log("there are", cats.length, "cats in this photo");

will output there are2cats in this photo.

harthur commented 12 years ago

Thanks, is this from the browser? In node it adds a space automatically.

trevorah commented 11 years ago

Erm, it looks like the original code was correct. console.log("there are", cats.length, "cats in this photo"); will output there are 2 cats in this photo in any browser that supports console.log().