Fix improperly formatted named links

This commit is contained in:
Corey Farwell 2016-01-23 20:53:58 -05:00
parent 62f062b683
commit b5c0961505
2 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
# rust-fnv
An implementation of the [FowlerNollVo hash function](chongo).
An implementation of the [FowlerNollVo hash function][chongo].
### [Read the documentation](http://doc.servo.org/fnv/)
@ -10,10 +10,10 @@ An implementation of the [FowlerNollVo hash function](chongo).
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

6
lib.rs
View File

@ -1,14 +1,14 @@
//! An implementation of the [FowlerNollVo hash function](chongo).
//! An implementation of the [FowlerNollVo 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