aboutsummaryrefslogtreecommitdiff
path: root/src/data/arena.rs
diff options
context:
space:
mode:
authorBruce Mitchener <bruce.mitchener@gmail.com>2023-08-28 11:05:45 +0700
committerBruce Mitchener <bruce.mitchener@gmail.com>2023-08-28 11:05:45 +0700
commit4c2d18a0cd2da342c94e4374d68a010d590a98f7 (patch)
tree0fd7f5782bb40780911cc5dbc6d677ffccd1454b /src/data/arena.rs
parent5c6def32396016f431552f8d0468ac4d5cee16e8 (diff)
downloadrapier-4c2d18a0cd2da342c94e4374d68a010d590a98f7.tar.gz
rapier-4c2d18a0cd2da342c94e4374d68a010d590a98f7.tar.bz2
rapier-4c2d18a0cd2da342c94e4374d68a010d590a98f7.zip
docs: Minor fixes.
Diffstat (limited to 'src/data/arena.rs')
-rw-r--r--src/data/arena.rs4
1 files changed, 2 insertions, 2 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};