diff --git a/app/vmselect/main.go b/app/vmselect/main.go
index 51ae8f9caf..600f375f3e 100644
--- a/app/vmselect/main.go
+++ b/app/vmselect/main.go
@@ -215,8 +215,8 @@ func RequestHandler(w http.ResponseWriter, r *http.Request) bool {
 	}
 
 	if path == "/vmalert" {
-		// vmalert access via incomplete url without `/` in the end. Redirecto to complete url.
-		// Use relative redirect, since, since the hostname and path prefix may be incorrect if VictoriaMetrics
+		// vmalert access via incomplete url without `/` in the end. Redirect to complete url.
+		// Use relative redirect, since the hostname and path prefix may be incorrect if VictoriaMetrics
 		// is hidden behind vmauth or similar proxy.
 		httpserver.Redirect(w, "vmalert/")
 		return true