diff --git a/app/vmagent/remotewrite/client.go b/app/vmagent/remotewrite/client.go
index fa0720efba..1b5399dc0c 100644
--- a/app/vmagent/remotewrite/client.go
+++ b/app/vmagent/remotewrite/client.go
@@ -326,8 +326,8 @@ func (c *client) doRequest(url string, body []byte) (*http.Response, error) {
 	req := c.newRequest(url, body)
 	resp, err := c.hc.Do(req)
 	if errors.Is(err, io.EOF) || errors.Is(err, io.ErrUnexpectedEOF) {
-		// it is likely connection become stale. So we do one more attempt,
-		// so we do a one more attempt in hope request will succeed.
+		// it is likely connection became stale.
+		// So we do one more attempt in hope request will succeed.
 		// If not, the error should be handled by the caller as usual.
 		req = c.newRequest(url, body)
 		resp, err = c.hc.Do(req)