diff --git a/src/commands.rs b/src/commands.rs index ac62bc53be..fbb0be1269 100644 --- a/src/commands.rs +++ b/src/commands.rs @@ -4,13 +4,13 @@ pub mod bindle; /// Commands for building Spin applications. pub mod build; -/// Commands for publishing applications to Fermyon Cloud. +/// Commands for publishing applications to the Fermyon Platform. pub mod cloud; -/// Package and upload an application to Fermyon Cloud. +/// Command to package and upload an application to the Fermyon Platform. pub mod deploy; /// Commands for external subcommands (i.e. plugins) pub mod external; -/// Log into Fermyon Cloud. +/// Command for logging into the Fermyon Platform. pub mod login; /// Command for creating a new application. pub mod new; diff --git a/src/commands/cloud.rs b/src/commands/cloud.rs index 55f7416083..280fe173c2 100644 --- a/src/commands/cloud.rs +++ b/src/commands/cloud.rs @@ -4,13 +4,13 @@ use clap::Subcommand; use super::deploy::DeployCommand; use super::login::LoginCommand; -/// Commands for publishing applications to Fermyon Cloud. +/// Commands for publishing applications to the Fermyon Platform. #[derive(Subcommand, Debug)] pub enum CloudCommands { - /// Package and upload an application to Fermyon Cloud. + /// Package and upload an application to the Fermyon Platform. Deploy(DeployCommand), - /// Log into Fermyon Cloud. + /// Log into the Fermyon Platform. Login(LoginCommand), } diff --git a/src/commands/deploy.rs b/src/commands/deploy.rs index 54316800cb..0174855830 100644 --- a/src/commands/deploy.rs +++ b/src/commands/deploy.rs @@ -38,7 +38,7 @@ const SPIN_DEPLOY_CHANNEL_NAME: &str = "spin-deploy"; const BINDLE_REGISTRY_URL_PATH: &str = "api/registry"; -/// Package and upload to Fermyon Cloud. +/// Package and upload to the Fermyon Platform. #[derive(Parser, Debug)] #[clap(about = "Deploy a Spin application")] pub struct DeployCommand { diff --git a/src/commands/login.rs b/src/commands/login.rs index 1d3b9aaec2..878d4a85d9 100644 --- a/src/commands/login.rs +++ b/src/commands/login.rs @@ -28,7 +28,7 @@ const SPIN_CLIENT_ID: &str = "583e63e9-461f-4fbe-a246-23e0fb1cad10"; const DEFAULT_CLOUD_URL: &str = "https://cloud.fermyon.com/"; -/// Log into Fermyon Cloud. +/// Log into the Fermyon Platform. #[derive(Parser, Debug)] #[clap(about = "Log into the server")] pub struct LoginCommand {