Skip to content

Commit

Permalink
Fix doc test
Browse files Browse the repository at this point in the history
  • Loading branch information
kauppie committed Mar 13, 2024
1 parent 08bde68 commit 053b601
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
//! assert_eq!(idx, 3);
//!
//! let coord = unsafe { coord_of(idx) };
//! assert_eq!(coord, (1, 1));
//! assert_eq!(coord, [1u16, 1u16]);
//! }
//! }
//! ```
Expand All @@ -48,7 +48,7 @@ mod deinterleave;
mod interleave;
mod mask;

pub use deinterleave::Deinterleave;
pub use deinterleave::{Deinterleave, DeinterleaveBMI2};
pub use interleave::{Interleave, InterleaveBMI2};

/// Calculates Z-order curve index for given sequence of coordinates.
Expand Down

0 comments on commit 053b601

Please sign in to comment.