Skip to content

Commit 6967402

Browse files
authored
Merge pull request #273 from atouchet/https
Use HTTPS for links
2 parents 8f9a699 + b598503 commit 6967402

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
The format is based on [Keep a Changelog](http://keepachangelog.com/)
6-
and this project adheres to [Semantic Versioning](http://semver.org/).
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/)
6+
and this project adheres to [Semantic Versioning](https://semver.org/).
77

88
## [Unreleased]
99

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,8 @@ this pre-generates seeds at compile time and embeds them as constants. See [aHas
114114

115115
Licensed under either of:
116116

117-
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
118-
* MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
117+
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or https://www.apache.org/licenses/LICENSE-2.0)
118+
* MIT license ([LICENSE-MIT](LICENSE-MIT) or https://opensource.org/licenses/MIT)
119119

120120
at your option.
121121

src/raw/generic.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ impl Group {
105105
#[inline]
106106
pub fn match_byte(self, byte: u8) -> BitMask {
107107
// This algorithm is derived from
108-
// http://graphics.stanford.edu/~seander/bithacks.html##ValueInWord
108+
// https://graphics.stanford.edu/~seander/bithacks.html##ValueInWord
109109
let cmp = self.0 ^ repeat(byte);
110110
BitMask((cmp.wrapping_sub(repeat(0x01)) & !cmp & repeat(0x80)).to_le())
111111
}

0 commit comments

Comments
 (0)