Skip to content

Commit

Permalink
Merge pull request #69 from jwodder/fix-links
Browse files Browse the repository at this point in the history
Fix broken links in README.md and docs
  • Loading branch information
jeffparsons authored Dec 16, 2024
2 parents 383c9c0 + 8ae0a79 commit 2ac0664
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,9 @@ book for general information about operating without the standard library.



[`RangeMap`]: https://docs.rs/rangemap/latest/rangemap/struct.RangeMap.html
[`RangeInclusiveMap`]: https://docs.rs/rangemap/latest/rangemap/struct.RangeInclusiveMap.html
[`RangeSet`]: https://docs.rs/rangemap/latest/rangemap/struct.RangeSet.html
[`RangeInclusiveSet`]: https://docs.rs/rangemap/latest/rangemap/struct.RangeInclusiveSet.html
[`RangeMap`]: https://docs.rs/rangemap/latest/rangemap/map/struct.RangeMap.html
[`RangeInclusiveMap`]: https://docs.rs/rangemap/latest/rangemap/inclusive_map/struct.RangeInclusiveMap.html
[`RangeSet`]: https://docs.rs/rangemap/latest/rangemap/set/struct.RangeSet.html
[`RangeInclusiveSet`]: https://docs.rs/rangemap/latest/rangemap/inclusive_set/struct.RangeInclusiveSet.html
[`Range`]: https://doc.rust-lang.org/stable/std/ops/struct.Range.html
[`RangeInclusive`]: https://doc.rust-lang.org/stable/std/ops/struct.RangeInclusive.html
2 changes: 1 addition & 1 deletion src/inclusive_set.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ pub type Union<'a, T> = crate::operations::Union<'a, RangeInclusive<T>, Iter<'a,
///
/// See [`RangeInclusiveMap`]'s documentation for more details.
///
/// [`RangeInclusiveMap`]: struct.RangeInclusiveMap.html
/// [`RangeInclusiveMap`]: crate::RangeInclusiveMap
pub struct RangeInclusiveSet<T, StepFnsT = T> {
rm: RangeInclusiveMap<T, (), StepFnsT>,
}
Expand Down
2 changes: 1 addition & 1 deletion src/set.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ pub type Union<'a, T> = crate::operations::Union<'a, Range<T>, Iter<'a, T>>;
///
/// See [`RangeMap`]'s documentation for more details.
///
/// [`RangeMap`]: struct.RangeMap.html
/// [`RangeMap`]: crate::RangeMap
pub struct RangeSet<T> {
rm: RangeMap<T, ()>,
}
Expand Down

0 comments on commit 2ac0664

Please sign in to comment.