git: b4fbc855a518 - main - cc_newreno(4): Fix a typo in a source code comment

From: Gordon Bergling <gbe_at_FreeBSD.org>
Date: Fri, 19 Nov 2021 18:16:21 UTC
The branch main has been updated by gbe (doc committer):

URL: https://cgit.FreeBSD.org/src/commit/?id=b4fbc855a518c2bcad60c66c8f4e149996033b10

commit b4fbc855a518c2bcad60c66c8f4e149996033b10
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2021-11-19 18:16:02 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2021-11-19 18:16:02 +0000

    cc_newreno(4): Fix a typo in a source code comment
    
    - s/conditons/conditions/
    
    MFC after:      3 days
---
 sys/netinet/cc/cc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/netinet/cc/cc.c b/sys/netinet/cc/cc.c
index 457f5a6e55e1..b49e5940bc7e 100644
--- a/sys/netinet/cc/cc.c
+++ b/sys/netinet/cc/cc.c
@@ -358,7 +358,7 @@ newreno_cc_post_recovery(struct cc_var *ccv)
 		if (pipe < CCV(ccv, snd_ssthresh))
 			/*
 			 * Ensure that cwnd does not collapse to 1 MSS under
-			 * adverse conditons. Implements RFC6582
+			 * adverse conditions. Implements RFC6582
 			 */
 			CCV(ccv, snd_cwnd) = max(pipe, CCV(ccv, t_maxseg)) +
 			    CCV(ccv, t_maxseg);