From eca14d98a43896be7f010fa6cf0f7ca31529a5a2 Mon Sep 17 00:00:00 2001 From: Caitlin Potter Date: Fri, 14 Nov 2014 11:11:39 -0500 Subject: [PATCH] chore($q): make jscs happy jscs loves to be happy and does not love trailing whitespace. --- src/ng/q.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ng/q.js b/src/ng/q.js index 418d5704..7353be52 100644 --- a/src/ng/q.js +++ b/src/ng/q.js @@ -6,10 +6,10 @@ * @requires $rootScope * * @description - * A service that helps you run functions asynchronously, and use their return values (or exceptions) - * when they are done processing. - * - * This is an implementation of promises/deferred objects inspired by + * A service that helps you run functions asynchronously, and use their return values (or exceptions) + * when they are done processing. + * + * This is an implementation of promises/deferred objects inspired by * [Kris Kowal's Q](https://github.com/kriskowal/q). * * $q can be used in two fashions --- one which is more similar to Kris Kowal's Q or jQuery's Deferred