Skip to content

Commit

Permalink
Merge pull request #5 from servo/fix-docs-links
Browse files Browse the repository at this point in the history
Fix doc links, use HTTP
  • Loading branch information
SimonSapin committed Jan 24, 2016
2 parents 62f062b + c48478a commit 6467ac3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description = "Fowler–Noll–Vo hash function"
license = "Apache-2.0 / MIT"
readme = "README.md"
repository = "https://github.com/servo/rust-fnv"
documentation = "http://doc.servo.org/fnv/"
documentation = "https://doc.servo.org/fnv/"

[lib]
name = "fnv"
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
# rust-fnv

An implementation of the [Fowler–Noll–Vo hash function](chongo).
An implementation of the [Fowler–Noll–Vo hash function][chongo].

### [Read the documentation](http://doc.servo.org/fnv/)
### [Read the documentation](https://doc.servo.org/fnv/)


## About

The FNV hash function is a custom `Hasher` implementation that is more
efficient for smaller hash keys.

[The Rust FAQ states that](faq) while the default `Hasher` implementation,
[The Rust FAQ states that][faq] while the default `Hasher` implementation,
SipHash, is good in many cases, it is notably slower than other algorithms
with short keys, such as when you have a map of integers to other values.
In cases like these, [FNV is demonstrably faster](graphs).
In cases like these, [FNV is demonstrably faster][graphs].

Its disadvantages are that it performs badly on larger inputs, and
provides no protection against collision attacks, where a malicious user
Expand Down
6 changes: 3 additions & 3 deletions lib.rs
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
//! An implementation of the [Fowler–Noll–Vo hash function](chongo).
//! An implementation of the [Fowler–Noll–Vo hash function][chongo].
//!
//! ## About
//!
//! The FNV hash function is a custom `Hasher` implementation that is more
//! efficient for smaller hash keys.
//!
//! [The Rust FAQ states that](faq) while the default `Hasher` implementation,
//! [The Rust FAQ states that][faq] while the default `Hasher` implementation,
//! SipHash, is good in many cases, it is notably slower than other algorithms
//! with short keys, such as when you have a map of integers to other values.
//! In cases like these, [FNV is demonstrably faster](graphs).
//! In cases like these, [FNV is demonstrably faster][graphs].
//!
//! Its disadvantages are that it performs badly on larger inputs, and
//! provides no protection against collision attacks, where a malicious user
Expand Down

0 comments on commit 6467ac3

Please sign in to comment.