Skip to content

Commit

Permalink
minor doc change
Browse files Browse the repository at this point in the history
  • Loading branch information
tiborschneider committed Sep 15, 2024
1 parent 29f585d commit cf99a60
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@

This crate provides a simple prefix tree for IP prefixes. Any lookup performs longest-prefix
match. This crate supports both IPv4 and IPv6 (from either [ipnet](https://docs.rs/ipnet/2.10.0)
or [ipnetwork](https://crates.io/crates/ipnetwork)). It also supports any type `(R, u8)`, where
`R` is any unsigned primitive integer (`u8`, `u16`, `u32`, `u64`, `u128`, `usize`).
or [ipnetwork](https://crates.io/crates/ipnetwork)). It also supports any tuple `(R, u8)`, where
`R` is any unsigned primitive integer (`u8`, `u16`, `u32`, `u64`, `u128`, or `usize`).

## Comparison with related projects

Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! This crate provides a simple prefix tree for IP prefixes. Any lookup performs longest-prefix
//! match. This crate supports both IPv4 and IPv6 (from either [ipnet](https://docs.rs/ipnet/2.10.0)
//! or [ipnetwork](https://crates.io/crates/ipnetwork)). It also supports any type `(R, u8)`, where
//! `R` is any unsigned primitive integer (`u8`, `u16`, `u32`, `u64`, `u128`, `usize`).
//! or [ipnetwork](https://crates.io/crates/ipnetwork)). It also supports any typle `(R, u8)`, where
//! `R` is any unsigned primitive integer (`u8`, `u16`, `u32`, `u64`, `u128`, or `usize`).
//!
//! # Comparison with related projects
//!
Expand Down

0 comments on commit cf99a60

Please sign in to comment.