Fix a few typos

This commit is contained in:
Dirk Stolle 2022-05-01 00:39:24 +02:00
parent 87d7b31f5e
commit e3d8f47708
2 changed files with 2 additions and 2 deletions

View file

@ -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 {

View file

@ -727,7 +727,7 @@ impl<W: Write + io::Seek> ZipWriter<W> {
/// 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",