Skip to content

Commit e88cf93

Browse files
authored
Merge pull request #20713 from jaredgalanis/fix-add-missing-location-property-names
2 parents 2b7474f + b7cf171 commit e88cf93

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

packages/@ember/routing/location.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export default interface Location {
7373

7474
/**
7575
* The current URL.
76-
* @property
76+
* @property currentURL
7777
* @type String
7878
* @public
7979
*/
@@ -83,6 +83,7 @@ export default interface Location {
8383
* Sets the current URL. Calling `setURL` will not trigger `onUpdateURL`
8484
* callbacks.
8585
*
86+
* @property setURL
8687
* @public
8788
* @method
8889
* @param {String} url the new URL to update to.
@@ -93,6 +94,7 @@ export default interface Location {
9394
* Replace the current URL (optional). Calling `replaceURL` will not trigger
9495
* `onUpdateURL` callbacks.
9596
*
97+
* @property replaceURL
9698
* @public
9799
* @method
98100
* @param {String} url the new URL to replace the current URL with.
@@ -109,6 +111,7 @@ export default interface Location {
109111
/**
110112
* Formats url to be placed into href attribute.
111113
*
114+
* @property formatURL
112115
* @public
113116
* @method
114117
* @param {String} url the url to format

0 commit comments

Comments
 (0)