Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clearer doc comments #4939

Merged
merged 1 commit into from
Jul 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/cli/src/commands/app/secrets/create.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use std::{
};
use wasmer_api::WasmerClient;

/// Create a new secret related to an Edge app.
/// Create a new app secret.
#[derive(clap::Parser, Debug)]
pub struct CmdAppSecretsCreate {
/* --- Common flags --- */
Expand Down
2 changes: 1 addition & 1 deletion lib/cli/src/commands/app/secrets/delete.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use wasmer_api::WasmerClient;

use super::utils::{self, get_secrets};

/// Delete an existing secret related to an Edge app.
/// Delete an existing app secret.
#[derive(clap::Parser, Debug)]
pub struct CmdAppSecretsDelete {
/* --- Common flags --- */
Expand Down
2 changes: 1 addition & 1 deletion lib/cli/src/commands/app/secrets/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use crate::{
use is_terminal::IsTerminal;
use std::path::PathBuf;

/// Retrieve the value of an existing secret related to an Edge app.
/// Retrieve the value of an existing app secret.
#[derive(clap::Parser, Debug)]
pub struct CmdAppSecretsList {
/* --- Common flags --- */
Expand Down
2 changes: 1 addition & 1 deletion lib/cli/src/commands/app/secrets/reveal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use dialoguer::theme::ColorfulTheme;
use is_terminal::IsTerminal;
use std::path::PathBuf;

/// Reveal the value of an existing secret related to an Edge app.
/// Reveal the value of an existing app secret.
#[derive(clap::Parser, Debug)]
pub struct CmdAppSecretsReveal {
/* --- Common flags --- */
Expand Down
2 changes: 1 addition & 1 deletion lib/cli/src/commands/app/secrets/update.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use std::{
};
use wasmer_api::WasmerClient;

/// Update an existing secret related to an Edge app.
/// Update an existing app secret.
#[derive(clap::Parser, Debug)]
pub struct CmdAppSecretsUpdate {
/* --- Common args --- */
Expand Down
Loading