2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-02-06 12:45:32 +00:00

Merge pull request #1031 from kianmeng/fix-typos

Fix typos
This commit is contained in:
Josh Triplett 2022-07-13 09:50:02 -07:00 committed by GitHub
commit 798ce31e10
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 7 additions and 7 deletions

View file

@ -61,7 +61,7 @@ deprecated `sync::channel` types, and introduces the `tokio1` feature.
As part of our `1.8.0` release last month we introduced the new
`async_std::channel` submodule and deprecated the unstable
`async_std::sync::channel` types. You can read our full motiviation for this
`async_std::sync::channel` types. You can read our full motivation for this
change in the last patch notes. But the short version is that the old
channels had some fundamental problems, and the `sync` submodule is a bit of
a mess.

View file

@ -1,6 +1,6 @@
# Security
Writing a highly perfomant async core library is a task involving some instances of unsafe code.
Writing a highly performant async core library is a task involving some instances of unsafe code.
We take great care in vetting all unsafe code included in `async-std` and do follow generally accepted practices.

View file

@ -245,7 +245,7 @@ async fn broker_loop(mut events: Receiver<Event>) -> Result<()> {
Notice what happens with all of the channels once we exit the accept loop:
1. First, we drop the main broker's sender.
That way when the readers are done, there's no sender for the broker's channel, and the chanel closes.
That way when the readers are done, there's no sender for the broker's channel, and the channel closes.
2. Next, the broker exits `while let Some(event) = events.next().await` loop.
3. It's crucial that, at this stage, we drop the `peers` map.
This drops writer's senders.

View file

@ -136,7 +136,7 @@ impl OpenOptions {
/// Configures the option for append mode.
///
/// When set to `true`, this option means the file will be writable after opening and the file
/// cursor will be moved to the end of file before every write operaiton.
/// cursor will be moved to the end of file before every write operation.
///
/// # Examples
///

View file

@ -18,7 +18,7 @@ impl<T: Write + Unpin + ?Sized> Future for WriteFmtFuture<'_, T> {
type Output = io::Result<()>;
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
// Process the interal Result the first time we run.
// Process the internal Result the first time we run.
if self.buffer.is_none() {
match self.res.take().unwrap() {
Err(err) => return Poll::Ready(Err(err)),

View file

@ -1485,7 +1485,7 @@ pub trait StreamExt: Stream {
the stream and ignore elements until it returns `false`.
After `false` is returned, `SkipWhile`'s job is over and all further
elements in the strem are yielded.
elements in the stream are yielded.
## Examples

View file

@ -135,7 +135,7 @@ impl Condvar {
}
}
/// Blocks the current taks until this condition variable receives a notification and the
/// Blocks the current task until this condition variable receives a notification and the
/// required condition is met. Spurious wakeups are ignored and this function will only
/// return once the condition has been met.
///