Skip to content

Commit

Permalink
Merge pull request #4939 from wasmerio/secrets-better-doc-comment
Browse files Browse the repository at this point in the history
Clearer doc comments
  • Loading branch information
xdoardo authored Jul 17, 2024
2 parents 491cba4 + 450cc36 commit 3660368
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
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

0 comments on commit 3660368

Please sign in to comment.