diff options
author | Joas Schilling <coding@schilljs.com> | 2016-09-07 09:32:20 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2016-09-07 09:32:20 +0200 |
commit | 83c46f05412bbbdbf36cf967564d1cf736ff539e (patch) | |
tree | f3a6538c04f3f82a191c9195944eb6545f23c1cf /core | |
parent | c0ecdf640203673801b01c9af0809c4ae87dc60a (diff) | |
download | nextcloud-server-83c46f05412bbbdbf36cf967564d1cf736ff539e.tar.gz nextcloud-server-83c46f05412bbbdbf36cf967564d1cf736ff539e.zip |
Fix typo
Diffstat (limited to 'core')
-rw-r--r-- | core/Command/User/ResetPassword.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Command/User/ResetPassword.php b/core/Command/User/ResetPassword.php index 62c4eceeee2..3388ef6a1bd 100644 --- a/core/Command/User/ResetPassword.php +++ b/core/Command/User/ResetPassword.php @@ -100,7 +100,7 @@ class ResetPassword extends Command { $question->setHidden(true); $password = $helper->ask($input, $output, $question); - $question = new Question('Conform the new password: '); + $question = new Question('Confirm the new password: '); $question->setHidden(true); $confirm = $helper->ask($input, $output, $question); |