Skip to content

Commit

Permalink
bump v0.0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
memoryleak47 committed Oct 17, 2024
1 parent ab05c4d commit 3672c65
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/slot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 3672c65

Please sign in to comment.