@@ -202,7 +202,7 @@ function Browser(window, document, $log, $sniffer) {
202
202
* @description
203
203
* Register callback function that will be called, when url changes.
204
204
*
205
- * It's only called when the url is changed by outside of angular:
205
+ * It's only called when the url is changed from outside of angular:
206
206
* - user types different url into address bar
207
207
* - user clicks on history (forward/back) button
208
208
* - user clicks on a link
@@ -244,7 +244,7 @@ function Browser(window, document, $log, $sniffer) {
244
244
/**
245
245
* @name ng.$browser#baseHref
246
246
* @methodOf ng.$browser
247
- *
247
+ *
248
248
* @description
249
249
* Returns current <base href>
250
250
* (always relative - without domain)
@@ -275,13 +275,13 @@ function Browser(window, document, $log, $sniffer) {
275
275
* It is not meant to be used directly, use the $cookie service instead.
276
276
*
277
277
* The return values vary depending on the arguments that the method was called with as follows:
278
- *
278
+ *
279
279
* - cookies() -> hash of all cookies, this is NOT a copy of the internal state, so do not modify
280
280
* it
281
281
* - cookies(name, value) -> set name to value, if value is undefined delete the cookie
282
282
* - cookies(name) -> the same as (name, undefined) == DELETES (no one calls it right now that
283
283
* way)
284
- *
284
+ *
285
285
* @returns {Object } Hash of all cookies (if called without any parameter)
286
286
*/
287
287
self . cookies = function ( name , value ) {
0 commit comments