Skip to content

Commit

Permalink
Correct typos
Browse files Browse the repository at this point in the history
Co-authored-by: Mara Bos <m-ou.se@m-ou.se>
  • Loading branch information
CDirkx and m-ou-se committed Apr 15, 2021
1 parent 904ee68 commit 2ecc820
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions library/std/src/sys/hermit/os.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ pub struct Env {
iter: vec::IntoIter<(OsString, OsString)>,
}

impl !Send for Args {}
impl !Sync for Args {}
impl !Send for Env {}
impl !Sync for Env {}

impl Iterator for Env {
type Item = (OsString, OsString);
Expand Down
4 changes: 2 additions & 2 deletions library/std/src/sys/wasi/os.rs
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,8 @@ pub struct Env {
iter: vec::IntoIter<(OsString, OsString)>,
}

impl !Send for Args {}
impl !Sync for Args {}
impl !Send for Env {}
impl !Sync for Env {}

impl Iterator for Env {
type Item = (OsString, OsString);
Expand Down

0 comments on commit 2ecc820

Please sign in to comment.