From a748410f52642a642d5ce47bbffd0d0f8616e4ad Mon Sep 17 00:00:00 2001 From: Pete Bacon Darwin Date: Mon, 15 Apr 2013 11:44:49 +0100 Subject: [PATCH] docs(rootScope): fix typo --- src/ng/rootScope.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ng/rootScope.js b/src/ng/rootScope.js index 7dedce0bd953..10b31dd101b1 100644 --- a/src/ng/rootScope.js +++ b/src/ng/rootScope.js @@ -9,7 +9,7 @@ * value as last time so we optimize the operation. * * Closures construction is expensive in terms of speed as well as memory: - * - No closures, instead ups prototypical inheritance for API + * - No closures, instead use prototypical inheritance for API * - Internal state needs to be stored on scope directly, which means that private state is * exposed as $$____ properties *