Skip to content

Commit

Permalink
Add returns after JSDoc comments for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
leonden committed Feb 15, 2024
1 parent e086332 commit 6b67ab7
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/MCT.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,13 +94,15 @@ export class MCT extends EventEmitter {

/**
* Tracks current selection state of the application.
*
* @private
*/
this.selection = new Selection(this);

/**
* MCT's time conductor, which may be used to synchronize view contents
* for telemetry- or time-based views.
*
* @type {module:openmct.TimeConductor}
* @memberof module:openmct.MCT#
* @name conductor
Expand Down Expand Up @@ -205,6 +207,7 @@ export class MCT extends EventEmitter {
/**
* MCT's user awareness management, to enable user and
* role specific functionality.
*
* @type {module:openmct.UserAPI}
* @memberof module:openmct.MCT#
* @name user
Expand All @@ -227,6 +230,7 @@ export class MCT extends EventEmitter {
/**
* MCT's annotation API that enables
* human-created comments and categorization linked to data products
*
* @type {module:openmct.AnnotationAPI}
* @memberof module:openmct.MCT#
* @name annotation
Expand Down Expand Up @@ -268,6 +272,7 @@ export class MCT extends EventEmitter {
}
/**
* Set path to where assets are hosted. This should be the path to main.js.
*
* @memberof module:openmct.MCT#
* @method setAssetPath
*/
Expand All @@ -276,6 +281,7 @@ export class MCT extends EventEmitter {
}
/**
* Get path to where assets are hosted.
*
* @memberof module:openmct.MCT#
* @method getAssetPath
*/
Expand All @@ -294,6 +300,7 @@ export class MCT extends EventEmitter {
/**
* Start running Open MCT. This should be called only after any plugins
* have been installed.
*
* @fires module:openmct.MCT~start
* @memberof module:openmct.MCT#
* @method start
Expand Down Expand Up @@ -329,6 +336,7 @@ export class MCT extends EventEmitter {
/**
* Fired by [MCT]{@link module:openmct.MCT} when the application
* is started.
*
* @event start
* @memberof module:openmct.MCT~
*/
Expand Down

0 comments on commit 6b67ab7

Please sign in to comment.