diff options
author | Dave Gauer <ratfactor@gmail.com> | 2021-05-25 11:51:58 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-25 11:51:58 -0400 |
commit | 473b36b8736e38f697601910cb7edfa903f7b5e3 (patch) | |
tree | b58b9d837406764e51ae5e485ee68eae633e5015 | |
parent | 84db3edcc553e48df34d87ca2785a58075fb2fe0 (diff) | |
download | ziglings-473b36b8736e38f697601910cb7edfa903f7b5e3.tar.gz ziglings-473b36b8736e38f697601910cb7edfa903f7b5e3.tar.bz2 ziglings-473b36b8736e38f697601910cb7edfa903f7b5e3.tar.xz ziglings-473b36b8736e38f697601910cb7edfa903f7b5e3.zip |
Missing word in explanation ex085
-rw-r--r-- | exercises/085_async2.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/085_async2.zig b/exercises/085_async2.zig index cec5c2b..77da106 100644 --- a/exercises/085_async2.zig +++ b/exercises/085_async2.zig @@ -1,6 +1,6 @@ // // So, 'suspend' returns control to the place from which it was -// called (the "call site"). How do we control back to the +// called (the "call site"). How do we give control back to the // suspended function? // // For that, we have a new keyword called 'resume' which takes an |