Rollup merge of #92866 - maxwase:does_exist_typo, r=Mark-Simulacrum
"Does exists" typos fix Fixed some typos
This commit is contained in:
commit
ae8f39e4d4
@ -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)?;
|
||||
///
|
||||
|
@ -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);
|
||||
/// ```
|
||||
|
@ -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
|
||||
|
@ -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))
|
||||
|
Loading…
Reference in New Issue
Block a user