We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b87c6a6 commit 8b39954Copy full SHA for 8b39954
docs/content/error/$route/norout.ngdoc
@@ -1,6 +1,6 @@
1
@ngdoc error
2
@name $route:norout
3
-@fullName Tried updating route when with no current route
+@fullName Tried updating route with no current route
4
@description
5
6
Occurs when an attempt is made to update the parameters on the current route when
src/ngRoute/route.js
@@ -605,7 +605,7 @@ function $RouteProvider() {
605
// interpolate modifies newParams, only query params are left
606
$location.search(newParams);
607
} else {
608
- throw $routeMinErr('norout', 'Tried updating route when with no current route');
+ throw $routeMinErr('norout', 'Tried updating route with no current route');
609
}
610
611
};
0 commit comments