docs($interval): fix typo in example

It's not "nis", it's "is"! 〜( ̄▽ ̄)〜

Closes #8711
This commit is contained in:
Casey Flynn
2014-08-21 12:19:59 -07:00
committed by Caitlin Potter
parent 888b0f5400
commit 4e79decc30

View File

@@ -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();
* });
* }])