Skip to content

Commit

Permalink
fix: add missing location property names
Browse files Browse the repository at this point in the history
- 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

(cherry picked from commit b7cf171)
  • Loading branch information
jaredgalanis authored and kategengler committed Jul 8, 2024
1 parent afe8b52 commit f26a36a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/@ember/routing/location.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export default interface Location {

/**
* The current URL.
* @property
* @property currentURL
* @type String
* @public
*/
Expand All @@ -83,6 +83,7 @@ export default interface Location {
* Sets the current URL. Calling `setURL` will not trigger `onUpdateURL`
* callbacks.
*
* @property setURL
* @public
* @method
* @param {String} url the new URL to update to.
Expand All @@ -93,6 +94,7 @@ export default interface Location {
* Replace the current URL (optional). Calling `replaceURL` will not trigger
* `onUpdateURL` callbacks.
*
* @property replaceURL
* @public
* @method
* @param {String} url the new URL to replace the current URL with.
Expand All @@ -109,6 +111,7 @@ export default interface Location {
/**
* Formats url to be placed into href attribute.
*
* @property formatURL
* @public
* @method
* @param {String} url the url to format
Expand Down

0 comments on commit f26a36a

Please sign in to comment.