Skip to content

Commit

Permalink
Merge pull request #38 from waywardmonkeys/use-intradoc-links
Browse files Browse the repository at this point in the history
Use intra-doc links and backticks.
  • Loading branch information
pczarn authored Jul 3, 2024
2 parents b3a1e7c + b82516f commit d538d36
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ impl<B: BitBlock> BitSet<B> {
}

/// Iterator over each usize stored in `self` union `other`.
/// See [union_with](#method.union_with) for an efficient in-place version.
/// See [`union_with`](Self::union_with) for an efficient in-place version.
///
/// # Examples
///
Expand Down Expand Up @@ -474,7 +474,7 @@ impl<B: BitBlock> BitSet<B> {
}

/// Iterator over each usize stored in `self` intersect `other`.
/// See [intersect_with](#method.intersect_with) for an efficient in-place version.
/// See [`intersect_with`](Self::intersect_with) for an efficient in-place version.
///
/// # Examples
///
Expand Down Expand Up @@ -507,7 +507,7 @@ impl<B: BitBlock> BitSet<B> {
}

/// Iterator over each usize stored in the `self` setminus `other`.
/// See [difference_with](#method.difference_with) for an efficient in-place version.
/// See [`difference_with`](Self::difference_with) for an efficient in-place version.
///
/// # Examples
///
Expand Down Expand Up @@ -543,8 +543,8 @@ impl<B: BitBlock> BitSet<B> {
}

/// Iterator over each usize stored in the symmetric difference of `self` and `other`.
/// See [symmetric_difference_with](#method.symmetric_difference_with) for
/// an efficient in-place version.
/// See [`symmetric_difference_with`](Self::symmetric_difference_with) for an efficient
/// in-place version.
///
/// # Examples
///
Expand Down

0 comments on commit d538d36

Please sign in to comment.