Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix clippy::doc_markdown lints #47

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/core/directed_edge/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ impl<C: Config> DirectedEdgeMesh<C> {
/// Unfortunately, LLVM is not smart enough to correctly optimize that code.
/// That's why this is hand-micro-optimized. The divisibility-check is
/// well-known and described for example here:
/// http://clomont.com/efficient-divisibility-testing/
/// <http://clomont.com/efficient-divisibility-testing/>
#[inline(always)]
fn is_divisible_by_3(idx: hsize) -> bool {
// We have to do different things depending on the handle size. The
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ pub(crate) mod sealed {
///
/// Of course, we would like to avoid annoying bugs due to errors like "use
/// after free". The crate `slotmap` has really great ideas regarding this.
/// `lox will try out some ideas to avoid some common mistakes in the future.
/// `lox` will try out some ideas to avoid some common mistakes in the future.
///
/// # The size of `hsize`
///
Expand Down
Loading