chore: fix typos in code comments (#6556)

This commit is contained in:
Atin
2021-05-19 10:42:09 +05:30
committed by GitHub
parent 509a392272
commit d6987ee05b
25 changed files with 52 additions and 52 deletions

View File

@@ -26,7 +26,7 @@ func GetUserByParamsName(c *context.APIContext, name string) *db.User {
return user
}
// GetUserByParams returns user whose name is presented in URL paramenter.
// GetUserByParams returns user whose name is presented in URL parameter.
func GetUserByParams(c *context.APIContext) *db.User {
return GetUserByParamsName(c, ":username")
}