Rollup merge of #92866 - maxwase:does_exist_typo, r=Mark-Simulacrum

"Does exists" typos fix

Fixed some typos
This commit is contained in:
Matthias Krüger 2022-01-18 04:42:03 +01:00 committed by GitHub
commit ae8f39e4d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 5 deletions

View File

@ -1050,7 +1050,7 @@ pub fn is_file(&self) -> bool {
///
/// 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)?;
///

View File

@ -2806,7 +2806,7 @@ pub fn is_dir(&self) -> bool {
/// 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);
/// ```

View File

@ -863,7 +863,7 @@ class RustBuild(object):
>>> 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

View File

@ -55,8 +55,8 @@ class ProgramOutOfDate(unittest.TestCase):
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))