Fix typo in help menu for the `reactivate` command (#3932)

This commit is contained in:
Kolen Cheung 2025-05-14 12:14:01 +01:00 committed by GitHub
parent da0607b039
commit e3ab63ac45
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -191,7 +191,7 @@ __fish_mamba_complete_subcmds '__fish_mamba_has_command shell' '
reinit Restore activation script from rc files
hook Micromamba hook scripts
activate Output activation code for the given shell
reactivate Output reactivateion code for the given shell
reactivate Output reactivation code for the given shell
deactivate Output deactivation code for the given shell
enable_long_path_support Output deactivation code for the given shell
'

View File

@ -407,7 +407,7 @@ set_shell_command(CLI::App* shell_subcmd, Configuration& config)
auto* reacti_subsubcmd = shell_subcmd->add_subcommand(
"reactivate",
"Output reactivateion code for the given shell"
"Output reactivation code for the given shell"
);
set_shell_reactivate_command(reacti_subsubcmd, config);