Skip to content

Commit

Permalink
Rollup merge of #92866 - maxwase:does_exist_typo, r=Mark-Simulacrum
Browse files Browse the repository at this point in the history
"Does exists" typos fix

Fixed some typos
  • Loading branch information
matthiaskrgr committed Jan 18, 2022
2 parents deee6f7 + a7092f9 commit ae8f39e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion library/std/src/fs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1050,7 +1050,7 @@ impl Metadata {
///
/// fn main() -> std::io::Result<()> {
/// let link_path = Path::new("link");
/// symlink("/origin_does_not_exists/", link_path)?;
/// symlink("/origin_does_not_exist/", link_path)?;
///
/// let metadata = fs::symlink_metadata(link_path)?;
///
Expand Down
2 changes: 1 addition & 1 deletion library/std/src/path.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2806,7 +2806,7 @@ impl Path {
/// use std::os::unix::fs::symlink;
///
/// let link_path = Path::new("link");
/// symlink("/origin_does_not_exists/", link_path).unwrap();
/// symlink("/origin_does_not_exist/", link_path).unwrap();
/// assert_eq!(link_path.is_symlink(), true);
/// assert_eq!(link_path.exists(), false);
/// ```
Expand Down
2 changes: 1 addition & 1 deletion src/bootstrap/bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -863,7 +863,7 @@ def get_toml(self, key, section=None):
>>> rb.get_toml("key2")
'value2'
If the key does not exists, the result is None:
If the key does not exist, the result is None:
>>> rb.get_toml("key3") is None
True
Expand Down
4 changes: 2 additions & 2 deletions src/bootstrap/bootstrap_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ def setUp(self):
def tearDown(self):
rmtree(self.container)

def test_stamp_path_does_not_exists(self):
"""Return True when the stamp file does not exists"""
def test_stamp_path_does_not_exist(self):
"""Return True when the stamp file does not exist"""
if os.path.exists(self.rustc_stamp_path):
os.unlink(self.rustc_stamp_path)
self.assertTrue(self.build.program_out_of_date(self.rustc_stamp_path, self.key))
Expand Down

0 comments on commit ae8f39e

Please sign in to comment.