CrowdHailer / fn.js

A JavaScript library built to encourage a functional programming style & strategy. - http://eliperelman.com/fn.js
MIT License
399 stars 30 forks source link

error in documentation in example for fn.delayFor #22

Closed g7alt closed 8 years ago

g7alt commented 9 years ago

the example for fn.delayFor is below;

fn.delay( 500, function () { console.log( 'Aliens...' ); });

it should be;

fn.delayFor( 500, function () { console.log( 'Aliens...' ); });

CrowdHailer commented 8 years ago

fixed