From bcdd01ceabbba5a408926a585099876b59f2297b Mon Sep 17 00:00:00 2001 From: Gehan Gonsalkorale Date: Sun, 28 Apr 2013 17:19:23 +0100 Subject: [PATCH] Update docs ref --- Gruntfile.coffee | 2 +- src/Storage.coffee | 7 +++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/Gruntfile.coffee b/Gruntfile.coffee index 27413e8..2e77272 100644 --- a/Gruntfile.coffee +++ b/Gruntfile.coffee @@ -59,4 +59,4 @@ module.exports = (grunt) -> grunt.loadNpmTasks 'grunt-shell' grunt.registerTask 'default', ['coffee', 'shell:docs'] - grunt.registerTask 'test', ['coffee', 'jasmine'] + grunt.registerTask 'test', ['coffee', 'jasmine', 'watch'] diff --git a/src/Storage.coffee b/src/Storage.coffee index 4eddc86..e2ad2f4 100644 --- a/src/Storage.coffee +++ b/src/Storage.coffee @@ -66,10 +66,9 @@ Storage = new Class # * __Promises__ # # Rather than using callbacks the request uses - # [futures.js](https://github.com/coolaj86/futures) - # to return a promise, or rather a - # [Future](https://github.com/coolaj86/futures/tree/v2.0/future) - # as it is called in this library. + # [Q.js](https://github.com/kriskowal/q) + # to return a promise. See the docs + # [Promise](http://documentup.com/kriskowal/q/) # # To be notified when the promise is fulfilled, i.e. the request has # finished in some way, then you can do the following: