Skip to content

Reduce typo count #153

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
## [0.42.0]
### Added
- Improved release search/lookup capability to support filtering assets by identifier
- Improved version specifications to support prelease tags and parallel supported versions
- Improved version specifications to support prerelease tags and parallel supported versions
### Changed
- Update reqwest features to allow http2 negotiation
- Update quick-xml (0.37) and zipsign (0.1)
Expand Down Expand Up @@ -150,7 +150,7 @@
### Added
- Add GCS support to S3 backend
### Changed
- Fixed docs refering to github in s3 backend
- Fixed docs referring to github in s3 backend
### Removed

## [0.20.0]
Expand Down
2 changes: 1 addition & 1 deletion src/backends/gitea.rs
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ impl UpdateBuilder {
self
}

/// Specify a slice of ed25519ph verifying keys to validate a download's authenticy
/// Specify a slice of ed25519ph verifying keys to validate a download's authenticity
///
/// If the feature is activated AND at least one key was provided, a download is verifying.
/// At least one key has to match.
Expand Down
2 changes: 1 addition & 1 deletion src/backends/github.rs
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ impl UpdateBuilder {
self
}

/// Specify a slice of ed25519ph verifying keys to validate a download's authenticy
/// Specify a slice of ed25519ph verifying keys to validate a download's authenticity
///
/// If the feature is activated AND at least one key was provided, a download is verifying.
/// At least one key has to match.
Expand Down
2 changes: 1 addition & 1 deletion src/backends/gitlab.rs
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ impl UpdateBuilder {
self
}

/// Specify a slice of ed25519ph verifying keys to validate a download's authenticy
/// Specify a slice of ed25519ph verifying keys to validate a download's authenticity
///
/// If the feature is activated AND at least one key was provided, a download is verifying.
/// At least one key has to match.
Expand Down
2 changes: 1 addition & 1 deletion src/backends/s3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ impl UpdateBuilder {
self
}

/// Specify a slice of ed25519ph verifying keys to validate a download's authenticy
/// Specify a slice of ed25519ph verifying keys to validate a download's authenticity
///
/// If the feature is activated AND at least one key was provided, a download is verifying.
/// At least one key has to match.
Expand Down
2 changes: 1 addition & 1 deletion src/update.rs
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ pub trait ReleaseUpdate {
/// Authorisation token for communicating with backend
fn auth_token(&self) -> Option<String>;

/// ed25519ph verifying keys to validate a download's authenticy
/// ed25519ph verifying keys to validate a download's authenticity
#[cfg(feature = "signatures")]
fn verifying_keys(&self) -> &[[u8; zipsign_api::PUBLIC_KEY_LENGTH]] {
&[]
Expand Down