Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 2360f7f

Browse files
fix: 🐛 correct class and method names in command files for consistency
1 parent edffa29 commit 2360f7f

17 files changed

+61
-61
lines changed

‎src/app/commands/generate-component.command.ts‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@ import { Uri } from 'vscode';
22
import { BaseCommand } from './base.command';
33

44
/**
5-
* The GenerateComponentCommad class.
5+
* The GenerateComponentCommand class.
66
*
77
* @class
88
* @classdesc The class that represents the generate component command.
99
* @extends {BaseCommand}
1010
* @export
1111
* @public
1212
* @example
13-
* const command = new GenerateComponentCommad(config);
13+
* const command = new GenerateComponentCommand(config);
1414
*/
15-
export class GenerateComponentCommad extends BaseCommand {
15+
export class GenerateComponentCommand extends BaseCommand {
1616
// -----------------------------------------------------------------
1717
// Methods
1818
// -----------------------------------------------------------------
@@ -25,7 +25,7 @@ export class GenerateComponentCommad extends BaseCommand {
2525
* @async
2626
* @method execute
2727
* @public
28-
* @memberof generateComponentCommad
28+
* @memberof generateComponentCommand
2929
*
3030
* @param {Uri} folderPath - The folder path
3131
*/

‎src/app/commands/generate-composable.command.ts‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export class GenerateComposableCommand extends BaseCommand {
2525
* @async
2626
* @method execute
2727
* @public
28-
* @memberof generateComposeableCommad
28+
* @memberof generateComposeableCommand
2929
*
3030
* @param {Uri} folderPath - The folder path
3131
*/

‎src/app/commands/generate-constant.command.ts‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@ import { Uri } from 'vscode';
22
import { BaseCommand } from './base.command';
33

44
/**
5-
* The GenerateConstantCommad class.
5+
* The GenerateConstantCommand class.
66
*
77
* @class
88
* @classdesc The class that represents the generate constant command.
99
* @extends {BaseCommand}
1010
* @export
1111
* @public
1212
* @example
13-
* const command = new GenerateConstantCommad(config);
13+
* const command = new GenerateConstantCommand(config);
1414
*/
15-
export class GenerateConstantCommad extends BaseCommand {
15+
export class GenerateConstantCommand extends BaseCommand {
1616
// -----------------------------------------------------------------
1717
// Methods
1818
// -----------------------------------------------------------------
@@ -25,7 +25,7 @@ export class GenerateConstantCommad extends BaseCommand {
2525
* @async
2626
* @method execute
2727
* @public
28-
* @memberof generateConstantCommad
28+
* @memberof generateConstantCommand
2929
*
3030
* @param {Uri} folderPath - The folder path
3131
*/

‎src/app/commands/generate-custom-component.commad.ts‎ renamed to ‎src/app/commands/generate-custom-component.command.ts‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@ import { Uri } from 'vscode';
22
import { BaseCommand } from './base.command';
33

44
/**
5-
* The GenerateCustomComponentCommad class.
5+
* The GenerateCustomComponentCommand class.
66
*
77
* @class
88
* @classdesc The class that represents the generate custom component command.
99
* @extends {BaseCommand}
1010
* @export
1111
* @public
1212
* @example
13-
* const command = new GenerateCustomComponentCommad(config);
13+
* const command = new GenerateCustomComponentCommand(config);
1414
*/
15-
export class GenerateCustomComponentCommad extends BaseCommand {
15+
export class GenerateCustomComponentCommand extends BaseCommand {
1616
// -----------------------------------------------------------------
1717
// Methods
1818
// -----------------------------------------------------------------
@@ -25,7 +25,7 @@ export class GenerateCustomComponentCommad extends BaseCommand {
2525
* @async
2626
* @method execute
2727
* @public
28-
* @memberof generateComponentCommad
28+
* @memberof generateComponentCommand
2929
*
3030
* @param {Uri} folderPath - The folder path
3131
*/

‎src/app/commands/generate-directive.command.ts‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export class GenerateDirectiveCommand extends BaseCommand {
2525
* @async
2626
* @method execute
2727
* @public
28-
* @memberof generateDirectiveCommad
28+
* @memberof generateDirectiveCommand
2929
*
3030
* @param {Uri} folderPath - The folder path
3131
*/

‎src/app/commands/generate-enum.command.ts‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@ import { Uri } from 'vscode';
22
import { BaseCommand } from './base.command';
33

44
/**
5-
* The GenerateEnumCommad class.
5+
* The GenerateEnumCommand class.
66
*
77
* @class
88
* @classdesc The class that represents the generate enum command.
99
* @extends {BaseCommand}
1010
* @export
1111
* @public
1212
* @example
13-
* const command = new GenerateEnumCommad(config);
13+
* const command = new GenerateEnumCommand(config);
1414
*/
15-
export class GenerateEnumCommad extends BaseCommand {
15+
export class GenerateEnumCommand extends BaseCommand {
1616
// -----------------------------------------------------------------
1717
// Methods
1818
// -----------------------------------------------------------------
@@ -25,7 +25,7 @@ export class GenerateEnumCommad extends BaseCommand {
2525
* @async
2626
* @method execute
2727
* @public
28-
* @memberof generateEnumCommad
28+
* @memberof generateEnumCommand
2929
*
3030
* @param {Uri} folderPath - The folder path
3131
*/

‎src/app/commands/generate-hook.command.ts‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@ import { Uri } from 'vscode';
22
import { BaseCommand } from './base.command';
33

44
/**
5-
* The GenerateHookCommad class.
5+
* The GenerateHookCommand class.
66
*
77
* @class
88
* @classdesc The class that represents the generate hook command.
99
* @extends {BaseCommand}
1010
* @export
1111
* @public
1212
* @example
13-
* const command = new GenerateHookCommad(config);
13+
* const command = new GenerateHookCommand(config);
1414
*/
15-
export class GenerateHookCommad extends BaseCommand {
15+
export class GenerateHookCommand extends BaseCommand {
1616
// -----------------------------------------------------------------
1717
// Methods
1818
// -----------------------------------------------------------------
@@ -25,7 +25,7 @@ export class GenerateHookCommad extends BaseCommand {
2525
* @async
2626
* @method execute
2727
* @public
28-
* @memberof generateHookCommad
28+
* @memberof generateHookCommand
2929
*
3030
* @param {Uri} folderPath - The folder path
3131
*/

‎src/app/commands/generate-layout.command.ts‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@ import { Uri } from 'vscode';
22
import { BaseCommand } from './base.command';
33

44
/**
5-
* The GenerateLayoutCommad class.
5+
* The GenerateLayoutCommand class.
66
*
77
* @class
88
* @classdesc The class that represents the generate layout command.
99
* @extends {BaseCommand}
1010
* @export
1111
* @public
1212
* @example
13-
* const command = new GenerateLayoutCommad(config);
13+
* const command = new GenerateLayoutCommand(config);
1414
*/
15-
export class GenerateLayoutCommad extends BaseCommand {
15+
export class GenerateLayoutCommand extends BaseCommand {
1616
// -----------------------------------------------------------------
1717
// Methods
1818
// -----------------------------------------------------------------
@@ -25,7 +25,7 @@ export class GenerateLayoutCommad extends BaseCommand {
2525
* @async
2626
* @method execute
2727
* @public
28-
* @memberof generateLayoutCommad
28+
* @memberof generateLayoutCommand
2929
*
3030
* @param {Uri} folderPath - The folder path
3131
*/

‎src/app/commands/generate-middleware.command.ts‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@ import { Uri } from 'vscode';
22
import { BaseCommand } from './base.command';
33

44
/**
5-
* The GenerateMiddlewareCommad class.
5+
* The GenerateMiddlewareCommand class.
66
*
77
* @class
88
* @classdesc The class that represents the generate middleware command.
99
* @extends {BaseCommand}
1010
* @export
1111
* @public
1212
* @example
13-
* const command = new GenerateMiddlewareCommad(config);
13+
* const command = new GenerateMiddlewareCommand(config);
1414
*/
15-
export class GenerateMiddlewareCommad extends BaseCommand {
15+
export class GenerateMiddlewareCommand extends BaseCommand {
1616
// -----------------------------------------------------------------
1717
// Methods
1818
// -----------------------------------------------------------------
@@ -25,7 +25,7 @@ export class GenerateMiddlewareCommad extends BaseCommand {
2525
* @async
2626
* @method execute
2727
* @public
28-
* @memberof generateMiddlewareCommad
28+
* @memberof generateMiddlewareCommand
2929
*
3030
* @param {Uri} folderPath - The folder path
3131
*/

‎src/app/commands/generate-model.command.ts‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@ import { Uri } from 'vscode';
22
import { BaseCommand } from './base.command';
33

44
/**
5-
* The GenerateModelCommad class.
5+
* The GenerateModelCommand class.
66
*
77
* @class
88
* @classdesc The class that represents the generate model command.
99
* @extends {BaseCommand}
1010
* @export
1111
* @public
1212
* @example
13-
* const command = new GenerateModelCommad(config);
13+
* const command = new GenerateModelCommand(config);
1414
*/
15-
export class GenerateModelCommad extends BaseCommand {
15+
export class GenerateModelCommand extends BaseCommand {
1616
// -----------------------------------------------------------------
1717
// Methods
1818
// -----------------------------------------------------------------
@@ -25,7 +25,7 @@ export class GenerateModelCommad extends BaseCommand {
2525
* @async
2626
* @method execute
2727
* @public
28-
* @memberof generateModelCommad
28+
* @memberof generateModelCommand
2929
*
3030
* @param {Uri} folderPath - The folder path
3131
*/

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /