From e3d8f477081fe4cdf60bfc40fbd3cc439ef91ea0 Mon Sep 17 00:00:00 2001 From: Dirk Stolle Date: Sun, 1 May 2022 00:39:24 +0200 Subject: [PATCH] Fix a few typos --- src/read.rs | 2 +- src/write.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/read.rs b/src/read.rs index c0311947..728ddf57 100644 --- a/src/read.rs +++ b/src/read.rs @@ -957,7 +957,7 @@ impl<'a> ZipFile<'a> { match self.data.system { System::Unix => Some(self.data.external_attributes >> 16), System::Dos => { - // Interpret MSDOS directory bit + // Interpret MS-DOS directory bit let mut mode = if 0x10 == (self.data.external_attributes & 0x10) { ffi::S_IFDIR | 0o0775 } else { diff --git a/src/write.rs b/src/write.rs index df3fb848..61ce378c 100644 --- a/src/write.rs +++ b/src/write.rs @@ -727,7 +727,7 @@ impl ZipWriter { /// Add a directory entry, taking a Path as argument. /// - /// This function ensures that the '/' path seperator is used. It also ignores all non 'Normal' + /// This function ensures that the '/' path separator is used. It also ignores all non 'Normal' /// Components, such as a starting '/' or '..' and '.'. #[deprecated( since = "0.5.7",