Skip to content

Commit 4a401bb

Browse files
committed
style(Scope): remove extra ws
1 parent 7401c70 commit 4a401bb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/ng/rootScope.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ function $RootScopeProvider(){
266266
267267
268268
269-
// Using a listener function
269+
// Using a listener function
270270
var food;
271271
scope.foodCounter = 0;
272272
expect(scope.foodCounter).toEqual(0);
@@ -291,7 +291,7 @@ function $RootScopeProvider(){
291291
// Update food and run digest. Now the counter will increment
292292
food = 'cheeseburger';
293293
scope.$digest();
294-
expect(scope.foodCounter).toEqual(1);
294+
expect(scope.foodCounter).toEqual(1);
295295
296296
* </pre>
297297
*
@@ -710,7 +710,7 @@ function $RootScopeProvider(){
710710
*
711711
* - `string`: execute using the rules as defined in {@link guide/expression expression}.
712712
* - `function(scope)`: execute the function with the current `scope` parameter.
713-
*
713+
*
714714
* @param {(object)=} locals Local variables object, useful for overriding values in scope.
715715
* @returns {*} The result of evaluating the expression.
716716
*/

0 commit comments

Comments
 (0)