From 528997768f50316def9ce307b9284327775ae3ce Mon Sep 17 00:00:00 2001 From: rsnapp Date: Mon, 11 Nov 2013 18:19:32 -0700 Subject: [PATCH] Missing closing parentheses in $q code example The $q documentation page is missing a closing parentheses in the it "should simulate a promise" code example. --- src/ng/q.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ng/q.js b/src/ng/q.js index 125e8e0c0549..d559d4d38688 100644 --- a/src/ng/q.js +++ b/src/ng/q.js @@ -165,7 +165,7 @@ * // Propagate promise resolution to 'then' functions using $apply(). * $rootScope.$apply(); * expect(resolvedValue).toEqual(123); - * }); + * })); * */ function $QProvider() {