improve comment on continue expression behavior

This commit is contained in:
Paul Ebose 2026-02-27 04:07:06 +01:00
parent 3ecaa34271
commit 93aa733d33
No known key found for this signature in database
GPG Key ID: EF7590319BD845B1

View File

@ -11,8 +11,8 @@
//
// }
//
// The "continue expression" executes every time the loop restarts
// whether the "continue" statement happens or not.
// The "continue expression" executes every single time the loop restarts,
// even when a `continue` statement skips the rest of the loop body.
//
const std = @import("std");