Skip to content

Commit

Permalink
Clean up doc comments
Browse files Browse the repository at this point in the history
  • Loading branch information
elizabethengelman committed Jul 16, 2024
1 parent 8704b32 commit d6d495f
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions cmd/soroban-cli/src/commands/network/container.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,8 @@ pub type StopCmd = stop::Cmd;

#[derive(Debug, clap::Subcommand)]
pub enum Cmd {
/// Tail logs of a running network container
/// Get logs of a running network container
Logs(logs::Cmd),
/// Start network
///
/// Start a container running a Stellar node, RPC, API, and friendbot (faucet).
///
/// `stellar network container start NETWORK [OPTIONS]`
Expand All @@ -22,7 +20,7 @@ pub enum Cmd {
///
/// `docker run --rm -p 8000:8000 --name stellar stellar/quickstart:testing --testnet --enable rpc,horizon`
Start(start::Cmd),
/// Stop a network started with `network container start`. For example, if you ran `network container start local`, you can use `network container stop local` to stop it.
/// Stop a network container started with `network container start`.
Stop(stop::Cmd),
}

Expand Down

0 comments on commit d6d495f

Please sign in to comment.