From bb48a2217295480b33ee4c558b37b76c9bb545a7 Mon Sep 17 00:00:00 2001 From: guangwu Date: Mon, 27 Nov 2023 17:57:52 +0800 Subject: [PATCH] fix: typo --- examples/unity_demo/Account.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/unity_demo/Account.go b/examples/unity_demo/Account.go index 73bf0730..eb1c0b8b 100644 --- a/examples/unity_demo/Account.go +++ b/examples/unity_demo/Account.go @@ -35,7 +35,7 @@ func (a *Account) Register_Client(username string, password string) { a.CallClient("ShowInfo", "Registered Successfully, please click login.") // 注册成功,请点击登录 }) } else { - a.CallClient("ShowError", "Sorry, this account aready exists.") // 抱歉,这个账号已经存在 + a.CallClient("ShowError", "Sorry, this account already exists.") // 抱歉,这个账号已经存在 } }) }