diff --git a/routers/web/org/home.go b/routers/web/org/home.go index e63dfef841..d43355a284 100644 --- a/routers/web/org/home.go +++ b/routers/web/org/home.go @@ -51,7 +51,7 @@ func Home(ctx *context.Context) { sortOrder := strings.ToLower(ctx.FormString("sort")) if sortOrder == "" { - // TODO: add new default sort for org home? + // TODO: add new default sort order for org home? sortOrder = setting.UI.ExploreDefaultSort } diff --git a/routers/web/user/profile.go b/routers/web/user/profile.go index dc02e900a5..8457eef119 100644 --- a/routers/web/user/profile.go +++ b/routers/web/user/profile.go @@ -112,7 +112,7 @@ func prepareUserProfileTabData(ctx *context.Context, showPrivate bool, profileDb sortOrder := strings.ToLower(ctx.FormString("sort")) if sortOrder == "" { - // TODO: add new default sort for user profile? + // TODO: add new default sort order for user profile? sortOrder = setting.UI.ExploreDefaultSort }