1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-04-04 21:06:10 -04:00

fix typo, first sound of user is not a vowel, but the consonant /j/

This commit is contained in:
wuxiangzhou2010
2018-04-02 15:17:36 +08:00
parent 4de3f1adc1
commit a58063e7ac
4 changed files with 6 additions and 6 deletions

4
app/proxyman/command/command.go Normal file → Executable file
View File

@@ -37,7 +37,7 @@ func (op *AddUserOperation) ApplyInbound(ctx context.Context, handler core.Inbou
}
um, ok := p.(proxy.UserManager)
if !ok {
return newError("proxy is not an UserManager")
return newError("proxy is not a UserManager")
}
return um.AddUser(ctx, op.User)
}
@@ -50,7 +50,7 @@ func (op *RemoveUserOperation) ApplyInbound(ctx context.Context, handler core.In
}
um, ok := p.(proxy.UserManager)
if !ok {
return newError("proxy is not an UserManager")
return newError("proxy is not a UserManager")
}
return um.RemoveUser(ctx, op.Email)
}