Skip to content

Commit b7cf171

Browse files
committed
fix: add missing location property names
- these missing property names mean that when the api docs are built the releasing member of the learning team needs to go in and manually fill in the property names in the json that is outputted
1 parent 2b7474f commit b7cf171

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)