diff options
Diffstat (limited to 'src/data')
| -rw-r--r-- | src/data/arena.rs | 4 | ||||
| -rw-r--r-- | src/data/graph.rs | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/data/arena.rs b/src/data/arena.rs index 00e3124..3332539 100644 --- a/src/data/arena.rs +++ b/src/data/arena.rs @@ -1,8 +1,8 @@ //! Arena adapted from the generational-arena crate. //! -//! See https://github.com/fitzgen/generational-arena/blob/master/src/lib.rs. +//! See <https://github.com/fitzgen/generational-arena/blob/master/src/lib.rs>. //! This has been modified to have a fully deterministic deserialization (including for the order of -//! Index attribution after a deserialization of the arena. +//! Index attribution after a deserialization of the arena). use parry::partitioning::IndexedData; use std::cmp; use std::iter::{self, Extend, FromIterator, FusedIterator}; diff --git a/src/data/graph.rs b/src/data/graph.rs index dd2c760..6a3ba15 100644 --- a/src/data/graph.rs +++ b/src/data/graph.rs @@ -1,5 +1,5 @@ // This is basically a stripped down version of petgraph's UnGraph. -// - It is not generic wrt. the index type (we always use u32). +// - It is not generic with respect to the index type (we always use u32). // - It preserves associated edge iteration order after Serialization/Deserialization. // - It is always undirected. //! A stripped-down version of petgraph's UnGraph. |
