Skip to content

Commit ebc9821

Browse files
authored
Merge pull request #1084 from ehuss/async-fix
Fix some typos in keyword generics post
2 parents 2355de8 + 96b8b11 commit ebc9821

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

posts/inside-rust/2023-02-23-keyword-generics-progress-report-feb-2023.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ The way this would work is that `Read` and `read_to_string` would become generic
8080
their "asyncness". When compiled for an `async` context, they will behave
8181
asynchronously. When compiled in a non-async context, they will behave
8282
synchronously. The `.await` in the `read_to_string` function body is necessary
83-
to mark the cancellation pointin case the function is compiled as async; but
83+
to mark the cancellation point in case the function is compiled as async; but
8484
when not async would essentially become a no-op [^always-async-maybe]:
8585

8686
[^always-async-maybe]: One restriction `?async` contexts have is that they can
@@ -400,14 +400,14 @@ the following proposals (in no particular order):
400400

401401
We'll be working closely with the Lang Team, Const WG, and Async WG on these
402402
proposals, and in some cases (such as `trait async`) we may even take an
403-
advicing role with a WG directly driving the RFC. As usual, these will be going
403+
advising role with a WG directly driving the RFC. As usual, these will be going
404404
through the RFC-nightly-stabilization cycle. And only once we're fully confident
405405
in them will they become available on stable Rust.
406406

407407
We're intentionally not yet including `effect/.do` notation on this roadmap. We
408408
expect to only be able to start this work once we have `?async` on nightly,
409409
which we don't yet have. So for now we'll continue work on designing it within
410-
the iniatiative, and hold off on making plans to introduce it quiet yet.
410+
the initiative, and hold off on making plans to introduce it quiet yet.
411411

412412
## Conclusion
413413

0 commit comments

Comments
 (0)