Skip to content

Commit

Permalink
A few tweaks to doc comments
Browse files Browse the repository at this point in the history
  • Loading branch information
elizabethengelman committed Dec 7, 2023
1 parent 39cdeee commit 3983924
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cmd/soroban-cli/src/commands/network/start.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const DOCKER_TAG: &str = "testing";

#[derive(Debug, clap::Parser, Clone)]
pub struct Cmd {
/// Network to start
/// Network to start, e.g. local, testnet, futurenet
pub network: String,

/// optional argument to customize container name
Expand Down
2 changes: 1 addition & 1 deletion cmd/soroban-cli/src/commands/network/stop.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const CONTAINER_NAME: &str = "stellar";

#[derive(Debug, clap::Parser, Clone)]
pub struct Cmd {
/// docker container to stop
/// docker container to stop, defaults to "stellar"
pub container: Option<String>,
}

Expand Down
4 changes: 2 additions & 2 deletions docs/soroban-cli-full-docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -852,7 +852,7 @@ Start network

###### **Arguments:**

* `<NETWORK>` — Network to start
* `<NETWORK>` — Network to start, e.g. local, testnet, futurenet

###### **Options:**

Expand All @@ -877,7 +877,7 @@ Stop network

###### **Arguments:**

* `<CONTAINER>` — docker container to stop
* `<CONTAINER>` — docker container to stop, defaults to "stellar"



Expand Down

0 comments on commit 3983924

Please sign in to comment.