From 20fdae12e055a2f8bb96def418a0d8e012fcdcf3 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 21 Mar 2023 23:16:38 -0400 Subject: [PATCH] spelling: ambiguity Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/Model/User.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Model/User.php b/src/Model/User.php index 80c8f60b8..d33cf2840 100644 --- a/src/Model/User.php +++ b/src/Model/User.php @@ -529,7 +529,7 @@ class User // Addons can create users, and since this 'catch' branch should only // execute if getAuthenticationInfo can't find an existing user, that's // exactly what will happen here. Creating a numeric username would create - // abiguity with user IDs, possibly opening up an attack vector. + // ambiguity with user IDs, possibly opening up an attack vector. // So let's be very careful about that. if (empty($username) || is_numeric($username)) { throw $e;