Skip to content

Commit

Permalink
This was generating inexistent indexes
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardobeat committed Jun 19, 2012
1 parent 0b82aa3 commit d579459
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion brains.coffee
Expand Up @@ -4,7 +4,7 @@ fs = require 'fs'


module.exports = module.exports =
# returns a random one from an array of strings # returns a random one from an array of strings
anyOf: (answers) -> answers[ Math.floor(Math.random() * (answers.length+.99)) ] anyOf: (answers) -> answers[ Math.floor(Math.random() * answers.length) ]
# confirm some action # confirm some action
queued: [] queued: []
confirm: (obj) -> confirm: (obj) ->
Expand Down

0 comments on commit d579459

Please sign in to comment.