From 3f311ec0ac255c13a7c769e265a1496d1e03938e Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Tue, 19 Oct 2021 17:58:04 +0100 Subject: [PATCH] LoginServer: Fix typo in --auto-login option value name --- Userland/Services/LoginServer/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Services/LoginServer/main.cpp b/Userland/Services/LoginServer/main.cpp index 216bac9043..9cba441a5b 100644 --- a/Userland/Services/LoginServer/main.cpp +++ b/Userland/Services/LoginServer/main.cpp @@ -117,7 +117,7 @@ int main(int argc, char** argv) char const* auto_login = nullptr; Core::ArgsParser args_parser; - args_parser.add_option(auto_login, "automatically log in with no prompt", "auto-login", 'a', "userame"); + args_parser.add_option(auto_login, "automatically log in with no prompt", "auto-login", 'a', "username"); args_parser.parse(argc, argv); if (!auto_login) {