Skip to content
This repository was archived by the owner on Jan 9, 2020. It is now read-only.

Commit 098df6b

Browse files
committed
fix(Package): force new version with kronos-service@4.12.0
1 parent 00e4bd2 commit 098df6b

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

src/step-provider-mixin.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/**
22
* Provide steps.
3+
* Register and lookup step types
34
*/
45
export function StepProviderMixin(superclass) {
56
return class StepProviderMixin extends superclass {

src/step.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export class Step extends Service {
1212
/**
1313
* Order in which the step should be started.
1414
* Higher numbers result in earlier startup
15-
* @retrun {number} 1.0
15+
* @return {number} 1.0
1616
*/
1717
static get startupOrder() {
1818
return 1.0;
@@ -21,7 +21,7 @@ export class Step extends Service {
2121
/**
2222
* Order in which the step should be started.
2323
* Higher numbers result in earlier startup
24-
* return {number} delivered from the constructors startupOrder
24+
* @return {number} delivered from the constructors startupOrder
2525
*/
2626
get startupOrder() {
2727
return this.constructor.startupOrder;

0 commit comments

Comments
 (0)