From d012334c0c7141af172fb8bde02c0634405671b3 Mon Sep 17 00:00:00 2001 From: tsclaus Date: Tue, 9 May 2017 14:10:55 -0400 Subject: [PATCH] Update ngRepeat.js docs(ngRepeatDirective): updates Updates documentation to correctly refer to block property as `clone` instead of as `element`. --- src/ng/directive/ngRepeat.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ng/directive/ngRepeat.js b/src/ng/directive/ngRepeat.js index c83a6223c65f..8397030c57eb 100644 --- a/src/ng/directive/ngRepeat.js +++ b/src/ng/directive/ngRepeat.js @@ -429,7 +429,7 @@ var ngRepeatDirective = ['$parse', '$animate', '$compile', function($parse, $ani // Store a list of elements from previous run. This is a hash where key is the item from the // iterator, and the value is objects with following properties. // - scope: bound scope - // - element: previous element. + // - clone: previous element. // - index: position // // We are using no-proto object so that we don't need to guard against inherited props via