From 72a1bdffd62505f0ba80ebd25ba1145455139f08 Mon Sep 17 00:00:00 2001 From: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> Date: Fri, 2 Mar 2018 01:08:02 -0800 Subject: [PATCH] Fix typo (#402) accouqnt -> account Signed-off-by: Andrew Morgan (https://amorgan.xyz) --- src/github.com/matrix-org/dendrite/clientapi/routing/login.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/github.com/matrix-org/dendrite/clientapi/routing/login.go b/src/github.com/matrix-org/dendrite/clientapi/routing/login.go index 56c67b77..f48261ab 100644 --- a/src/github.com/matrix-org/dendrite/clientapi/routing/login.go +++ b/src/github.com/matrix-org/dendrite/clientapi/routing/login.go @@ -109,7 +109,7 @@ func Login( // but that would leak the existence of the user. return util.JSONResponse{ Code: 403, - JSON: jsonerror.Forbidden("username or password was incorrect, or the accouqnt does not exist"), + JSON: jsonerror.Forbidden("username or password was incorrect, or the account does not exist"), } }