Issue #21439: Fix a couple of typos.
diff --git a/Doc/reference/compound_stmts.rst b/Doc/reference/compound_stmts.rst
index 52fc283..94b07f0 100644
--- a/Doc/reference/compound_stmts.rst
+++ b/Doc/reference/compound_stmts.rst
@@ -180,7 +180,7 @@
    for i in range(10):
        print(i)
        i = 5             # this will not affect the for-loop
-                         # be i will be overwritten with the next
+                         # because i will be overwritten with the next
                          # index in the range