From 4e79decc300e9f5415e4eb6a0befc887fd1b12cd Mon Sep 17 00:00:00 2001 From: Casey Flynn Date: Thu, 21 Aug 2014 12:19:59 -0700 Subject: [PATCH] docs($interval): fix typo in example MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It's not "nis", it's "is"! 〜( ̄▽ ̄)〜 Closes #8711 --- src/ng/interval.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ng/interval.js b/src/ng/interval.js index ed698424..64be1a9f 100644 --- a/src/ng/interval.js +++ b/src/ng/interval.js @@ -80,7 +80,7 @@ function $IntervalProvider() { * }; * * $scope.$on('$destroy', function() { - * // Make sure that the interval nis destroyed too + * // Make sure that the interval is destroyed too * $scope.stopFight(); * }); * }])