diff --git a/cmd/scw/testdata/test-all-usage-apple-silicon-os-list-usage.golden b/cmd/scw/testdata/test-all-usage-apple-silicon-os-list-usage.golden index 782891f300..455991e6d8 100644 --- a/cmd/scw/testdata/test-all-usage-apple-silicon-os-list-usage.golden +++ b/cmd/scw/testdata/test-all-usage-apple-silicon-os-list-usage.golden @@ -1,6 +1,6 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 πŸŸ₯πŸŸ₯πŸŸ₯ STDERR️️ πŸŸ₯πŸŸ₯πŸŸ₯️ -List all Operating System (OS). The response will include the total number of OS as well as their associated IDs, names and labels. +List all Operating Systems (OS). The response will include the total number of OS as well as their associated IDs, names and labels. USAGE: scw apple-silicon os list [arg=value ...] diff --git a/cmd/scw/testdata/test-all-usage-apple-silicon-os-usage.golden b/cmd/scw/testdata/test-all-usage-apple-silicon-os-usage.golden index 7846145e65..e6b0ff5660 100644 --- a/cmd/scw/testdata/test-all-usage-apple-silicon-os-usage.golden +++ b/cmd/scw/testdata/test-all-usage-apple-silicon-os-usage.golden @@ -7,7 +7,7 @@ USAGE: AVAILABLE COMMANDS: get Get an Operating System (OS) - list List all Operating System (OS) + list List all Operating Systems (OS) FLAGS: -h, --help help for os diff --git a/cmd/scw/testdata/test-all-usage-apple-silicon-server-type-get-usage.golden b/cmd/scw/testdata/test-all-usage-apple-silicon-server-type-get-usage.golden index a12b2eab55..bb83d559c0 100644 --- a/cmd/scw/testdata/test-all-usage-apple-silicon-server-type-get-usage.golden +++ b/cmd/scw/testdata/test-all-usage-apple-silicon-server-type-get-usage.golden @@ -1,6 +1,6 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 πŸŸ₯πŸŸ₯πŸŸ₯ STDERR️️ πŸŸ₯πŸŸ₯πŸŸ₯️ -Get a server technical details. +Get technical details (CPU, disk size etc.) of a server type. USAGE: scw apple-silicon server-type get [arg=value ...] diff --git a/docs/commands/apple-silicon.md b/docs/commands/apple-silicon.md index 5e238ee173..0b28e55c1f 100644 --- a/docs/commands/apple-silicon.md +++ b/docs/commands/apple-silicon.md @@ -14,7 +14,7 @@ Scaleway is not affiliated with Apple Inc. - [OS management commands](#os-management-commands) - [Get an Operating System (OS)](#get-an-operating-system-(os)) - - [List all Operating System (OS)](#list-all-operating-system-(os)) + - [List all Operating Systems (OS)](#list-all-operating-systems-(os)) - [Apple silicon management commands](#apple-silicon-management-commands) - [Create a server](#create-a-server) - [Delete a server](#delete-a-server) @@ -55,9 +55,9 @@ scw apple-silicon os get [arg=value ...] -### List all Operating System (OS) +### List all Operating Systems (OS) -List all Operating System (OS). The response will include the total number of OS as well as their associated IDs, names and labels. +List all Operating Systems (OS). The response will include the total number of OS as well as their associated IDs, names and labels. **Usage:** @@ -286,7 +286,7 @@ Server-Types management commands ### Get a server type -Get a server technical details. +Get technical details (CPU, disk size etc.) of a server type. **Usage:** diff --git a/internal/namespaces/applesilicon/v1alpha1/applesilicon_cli.go b/internal/namespaces/applesilicon/v1alpha1/applesilicon_cli.go index de6ec82348..8309d9d865 100644 --- a/internal/namespaces/applesilicon/v1alpha1/applesilicon_cli.go +++ b/internal/namespaces/applesilicon/v1alpha1/applesilicon_cli.go @@ -107,7 +107,7 @@ func appleSiliconServerTypeList() *core.Command { func appleSiliconServerTypeGet() *core.Command { return &core.Command{ Short: `Get a server type`, - Long: `Get a server technical details.`, + Long: `Get technical details (CPU, disk size etc.) of a server type.`, Namespace: "apple-silicon", Resource: "server-type", Verb: "get", @@ -230,8 +230,8 @@ func appleSiliconServerList() *core.Command { func appleSiliconOsList() *core.Command { return &core.Command{ - Short: `List all Operating System (OS)`, - Long: `List all Operating System (OS). The response will include the total number of OS as well as their associated IDs, names and labels.`, + Short: `List all Operating Systems (OS)`, + Long: `List all Operating Systems (OS). The response will include the total number of OS as well as their associated IDs, names and labels.`, Namespace: "apple-silicon", Resource: "os", Verb: "list",