Skip to content
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 docs/cli-reference/dfx-canister.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ For reference information and examples that illustrate using `dfx canister` comm
| [`send`](#dfx-canister-send) | Send a previously-signed message. |
| [`sign`](#dfx-canister-send) | Sign a canister call and generate message file. |
| [`start`](#dfx-canister-start) | Starts a stopped canister. |
| [`status`](#dfx-canister-status) | Returns the current status of a canister: Running, Stopping, or Stopped. |
| [`status`](#dfx-canister-status) | Returns the current status of a canister as defined [here](https://internetcomputer.org/docs/current/references/ic-interface-spec#ic-canister_status). |
| [`stop`](#dfx-canister-stop) | Stops a currently running canister. |
| [`uninstall-code`](#dfx-canister-uninstall-code) | Uninstalls a canister, removing its code and state. Does not delete the canister. |
| [`update-settings`](#dfx-canister-update-settings) | Update one or more of a canister's settings (i.e its controller, compute allocation, or memory allocation.). |
Expand Down
2 changes: 1 addition & 1 deletion src/dfx/src/commands/canister/status.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use ic_types::Principal;
use slog::info;
use std::time::Duration;

/// Returns the current status of a canister: Running, Stopping, or Stopped.
/// Returns the current status of a canister: Running, Stopping, or Stopped. Also carries information like balance, current settings, memory used and everything returned by 'info'.
#[derive(Parser)]
pub struct CanisterStatusOpts {
/// Specifies the name of the canister to return information for.
Expand Down