-
Notifications
You must be signed in to change notification settings - Fork 895
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Fixes inconsistent 8-column tab indentation - Convert British spellings to US
- Loading branch information
Showing
22 changed files
with
667 additions
and
486 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
cfg_if! { | ||
if #[cfg(windows)] { | ||
mod windows; | ||
pub use self::windows::CertBundle; | ||
mod windows; | ||
pub use self::windows::CertBundle; | ||
} else if #[cfg(target_os = "macos")] { | ||
mod macos; | ||
pub use self::macos::CertBundle; | ||
mod macos; | ||
pub use self::macos::CertBundle; | ||
} else if #[cfg(unix)] { | ||
mod unix; | ||
pub use self::unix::CertBundle; | ||
mod unix; | ||
pub use self::unix::CertBundle; | ||
} else { | ||
// Unknown | ||
// Unknown | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.