Skip to content

Commit

Permalink
Merge pull request #557 from kinow/minor-updates
Browse files Browse the repository at this point in the history
Fix typos and jsdocs tags
  • Loading branch information
oliver-sanders authored Dec 9, 2020
2 parents 0c088f9 + d6e67f2 commit 782dd3f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
8 changes: 7 additions & 1 deletion src/components/cylc/workflow/lumino-widget.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,13 @@ export default class LuminoWidget extends Widget {
* Event details returned for a `CustomEvent`.
*
* @link https://developer.mozilla.org/en-US/docs/Web/Guide/Events/Creating_and_triggering_events
* @returns {{closable: boolean, name: string, id: string}}
* @returns {{
* detail: {
* id: string,
* name: string,
* closable: boolean
* }
* }}
* @private
*/
_getEventDetails () {
Expand Down
2 changes: 1 addition & 1 deletion src/graphql/queries.js
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ subscription {

/**
* Query used to retrieve data for the GScan sidebar.
* @type {DocumentNode}
* @type {string}
*/
const GSCAN_QUERY = `
subscription {
Expand Down
1 change: 1 addition & 0 deletions src/model/WorkflowState.model.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ class WorkflowState extends Enumify {
/**
* Constructor.
* @param {String} name
* @param {String} icon
*/
constructor (name, icon) {
super()
Expand Down
2 changes: 1 addition & 1 deletion src/utils/aotf.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

/*
* Functionality for introspecting mutations, associating them with Cylc
* objects, filtering and calling mutatons.
* objects, filtering and calling mutations.
*
* (AOTF == Api On The Fly)
*/
Expand Down

0 comments on commit 782dd3f

Please sign in to comment.