Skip to content

Commit

Permalink
doc(lib): fix links
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Thiel committed Feb 13, 2017
1 parent 5e44fe9 commit f061028
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ categories = ["algorithms"]
license = "MIT/Apache-2.0"
name = "treediff"
repository = "https://github.com/Byron/treediff-rs"
version = "2.1.0"
version = "2.1.1"

[dependencies]
rustc-serialize = {version = "0.3.22", optional = true}
Expand Down
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
<a name="v2.1.1"></a>
### v2.1.1 (2017-02-13)

* fix library documentation links

<a name="v2.1.0"></a>
## v2.1.0 (2017-02-13)

Expand Down
8 changes: 4 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
//! **See what's different in arbitrary data structures**.
//!
//! The [main diff algorithm][diffalgo]
//! The main [`diff`] algorithm.
//! we implement here is less than a screen full of lines, yet it enables a vast amount of
//! applications.
//! It can work with all values implementing the `Value` trait.
//!
//! On top of it there is a [merge implementation][merge], which can be used to aggregate changes
//! On top of it there is a [`merge`] implementation, which can be used to aggregate changes
//! into a target value. It works with `Value`s which implement the `Mutable` trait.
//!
//! # Usage
Expand All @@ -14,8 +14,8 @@
//! Also note that you will have to choose the features to build the library with in order to
//! get trait implementations for `Value` types of common libraries,
//! i.e. `cargo build --features=with-serde-json`.
//! [merge]: https://docs.rs/treediff/*/treediff/merge/index.html
//! [diffalgo]: https://docs.rs/treediff/*/treediff/fn.diff.html
//! [`diff`]: fn.diff.html
//! [`merge`]: tools/struct.Merger.html
//! [diff-tests]: https://github.com/Byron/treediff-rs/blob/master/tests/diff.rs
//! [merge-tests]: https://github.com/Byron/treediff-rs/blob/master/tests/merge.rs
#![deny(missing_docs)]
Expand Down

0 comments on commit f061028

Please sign in to comment.