Fix a few typos
This commit is contained in:
parent
87d7b31f5e
commit
e3d8f47708
2 changed files with 2 additions and 2 deletions
|
@ -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 {
|
||||||
|
|
|
@ -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",
|
||||||
|
|
Loading…
Add table
Reference in a new issue