Skip to content

Commit 96b8b11

Browse files
committed
Fix some typos in keyword generics post
1 parent 1fb18e1 commit 96b8b11

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
@@ -398,14 +398,14 @@ the following proposals (in no particular order):
398398

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

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

410410
## Conclusion
411411

0 commit comments

Comments
 (0)