From 3672c65cd6544a4b62c84bb85c17465aca52279f Mon Sep 17 00:00:00 2001 From: memoryleak47 Date: Thu, 17 Oct 2024 21:42:18 +0200 Subject: [PATCH] bump v0.0.11 --- Cargo.toml | 2 +- src/slot.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b1c8077..e07d626 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "slotted-egraphs" -version = "0.0.10" +version = "0.0.11" edition = "2021" description = "E-Graphs with name binding" license = "Apache-2.0 OR MIT" diff --git a/src/slot.rs b/src/slot.rs index ccd9e59..614a304 100644 --- a/src/slot.rs +++ b/src/slot.rs @@ -29,7 +29,7 @@ thread_local! { impl Slot { /// Generates a fresh slot. /// - /// Any slot return from this function has never been constructed before. + /// Any slot returned from this function has never been constructed before. pub fn fresh() -> Self { SLOT_TABLE.with_borrow_mut(|tab| { let old_val = tab.fresh_idx;