From bc3dd03b3d0d75f9ae0ea91b884ccac7c4dad88c Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Thu, 23 Jul 2015 15:45:57 +0200 Subject: [PATCH] docs(ngOptions): remove obsolete trkslct error page Closes #12417 --- docs/content/error/ngOptions/trkslct.ngdoc | 33 ---------------------- 1 file changed, 33 deletions(-) delete mode 100644 docs/content/error/ngOptions/trkslct.ngdoc diff --git a/docs/content/error/ngOptions/trkslct.ngdoc b/docs/content/error/ngOptions/trkslct.ngdoc deleted file mode 100644 index 563ab7ea51b0..000000000000 --- a/docs/content/error/ngOptions/trkslct.ngdoc +++ /dev/null @@ -1,33 +0,0 @@ -@ngdoc error -@name ngOptions:trkslct -@fullName Comprehension expression cannot contain both `select as` and `track by` expressions. -@description - -NOTE: This error was introduced in 1.3.0-rc.5, and was removed for 1.3.0-rc.6 in order to -not break existing apps. - -This error occurs when 'ngOptions' is passed a comprehension expression that contains both a -`select as` expression and a `track by` expression. These two expressions are fundamentally -incompatible. - - * Example of bad expression: ` -``` - -Note: This would store the whole `item` as the model to `scope.selected` instead of `item.subItem`. - -For more information on valid expression syntax, see 'ngOptions' in {@link ng.directive:select select} directive docs.