Update comment per feedback

This commit is contained in:
Nahua 2022-07-31 18:04:56 +02:00 committed by GitHub
parent 27fde06d56
commit 828f96c62c

View file

@ -80,7 +80,7 @@ pub fn main() void {
while (aliens_alive > 0) {
aliens_alive = 0;
// Loop through every alien by reference by specifying that the capture value is a pointer
// Loop through every alien by reference (* makes a pointer capture value)
for (aliens) |*alien| {
// *** Zap the Alien Here! ***