Merge pull request #309 from striezel/fix-typos

Fix a few typos
This commit is contained in:
Alexander Zaitsev 2022-05-01 15:14:10 +03:00 committed by GitHub
commit 93ecab8cd6
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -957,7 +957,7 @@ impl<'a> ZipFile<'a> {
match self.data.system { match self.data.system {
System::Unix => Some(self.data.external_attributes >> 16), System::Unix => Some(self.data.external_attributes >> 16),
System::Dos => { System::Dos => {
// Interpret MSDOS directory bit // Interpret MS-DOS directory bit
let mut mode = if 0x10 == (self.data.external_attributes & 0x10) { let mut mode = if 0x10 == (self.data.external_attributes & 0x10) {
ffi::S_IFDIR | 0o0775 ffi::S_IFDIR | 0o0775
} else { } else {

View file

@ -727,7 +727,7 @@ impl<W: Write + io::Seek> ZipWriter<W> {
/// Add a directory entry, taking a Path as argument. /// 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 '.'. /// Components, such as a starting '/' or '..' and '.'.
#[deprecated( #[deprecated(
since = "0.5.7", since = "0.5.7",