From 4c2d18a0cd2da342c94e4374d68a010d590a98f7 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Mon, 28 Aug 2023 11:05:45 +0700 Subject: docs: Minor fixes. --- src/data/arena.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/data/arena.rs') 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 . //! 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}; -- cgit