Skip to content

Commit

Permalink
Make type public
Browse files Browse the repository at this point in the history
It's still not re-exported from the parent module, hence not making it
available to users. This just helps to further split the code into more
modules.
  • Loading branch information
hannobraun committed Sep 20, 2022
1 parent 49fa796 commit 7769599
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/fj-kernel/src/stores/store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ impl<T> Reservation<T> {
}
}

type StoreInner<T> = Arc<RwLock<Blocks<T>>>;
pub type StoreInner<T> = Arc<RwLock<Blocks<T>>>;

#[cfg(test)]
mod tests {
Expand Down

0 comments on commit 7769599

Please sign in to comment.