diff options
| author | Matheus Martins <matheuscumth@gmail.com> | 2024-06-24 04:23:29 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-24 07:23:29 +0000 |
| commit | 8956142cc5b4f5636ae1943f81bf2c22864b8dba (patch) | |
| tree | 6bc9aafe34e0f6056310361d68b3fb3cfa98b377 /crates | |
| parent | chore(ci): do not run current ci for ui (#2189) (diff) | |
| download | atuin-8956142cc5b4f5636ae1943f81bf2c22864b8dba.zip | |
fix: Some --help comments didn't show properly (#2176)
* FIX: Some --help comments didn't show properly (#3)
* FIX: Some --help comments didn't show properly
* FIX: Some --help comments didn't show properly
* FIX: Some --help comments didn't show properly
* FIX: Some --help comments didn't show properly
* Update crates/atuin/src/command/client.rs
grammatical sentence
Co-authored-by: Ellie Huxtable <ellie@elliehuxtable.com>
* Update crates/atuin/src/command/client.rs
---------
Co-authored-by: Ellie Huxtable <ellie@elliehuxtable.com>
Diffstat (limited to 'crates')
| -rw-r--r-- | crates/atuin/src/command/client.rs | 3 | ||||
| -rw-r--r-- | crates/atuin/src/command/client/account.rs | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/crates/atuin/src/command/client.rs b/crates/atuin/src/command/client.rs index 80f32929..a129e6ac 100644 --- a/crates/atuin/src/command/client.rs +++ b/crates/atuin/src/command/client.rs @@ -76,11 +76,12 @@ pub enum Cmd { #[command()] Doctor, + /// *Experimental* Start the background daemon #[cfg(feature = "daemon")] #[command()] Daemon, - /// Print example configuration + /// Print the default atuin configuration (config.toml) #[command()] DefaultConfig, } diff --git a/crates/atuin/src/command/client/account.rs b/crates/atuin/src/command/client/account.rs index e31e6208..e99c9593 100644 --- a/crates/atuin/src/command/client/account.rs +++ b/crates/atuin/src/command/client/account.rs @@ -21,7 +21,7 @@ pub enum Commands { /// Login to the configured server Login(login::Cmd), - // Register a new account + /// Register a new account Register(register::Cmd), /// Log out |
