Skip to content

Commit 7b4bb07

Browse files
authored
Corrected "schemas" typos. (#89)
* Corrected "schemas" to "indexes" under App_Indexes. * Corrected typo "schemas" to "apps" under App_Apps
1 parent 528617a commit 7b4bb07

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

cli/Squidex.CLI/Squidex.CLI/Commands/App_Apps.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public partial class App
2222
[Subcommand]
2323
public sealed class Apps(IConfigurationService configuration, ILogger log)
2424
{
25-
[Command("list", Description = "List all schemas.")]
25+
[Command("list", Description = "List all apps.")]
2626
public async Task List(ListArguments arguments)
2727
{
2828
var session = configuration.StartSession(arguments.App);

cli/Squidex.CLI/Squidex.CLI/Commands/App_Indexes.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ namespace Squidex.CLI.Commands;
2020

2121
public sealed partial class App
2222
{
23-
[Command("indexes", Description = "Manage schemas.")]
23+
[Command("indexes", Description = "Manage indexes.")]
2424
[Subcommand]
2525
public sealed partial class Indexes(IConfigurationService configuration, ILogger log)
2626
{
27-
[Command("list", Description = "List all schemas.")]
27+
[Command("list", Description = "List all indexes.")]
2828
public async Task List(ListArguments arguments)
2929
{
3030
var session = configuration.StartSession(arguments.App);

0 commit comments

Comments
 (0)