Skip to content

Commit

Permalink
Update argument name
Browse files Browse the repository at this point in the history
  • Loading branch information
hannobraun committed Mar 23, 2024
1 parent 2bb189f commit 155a8df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/fj-core/src/topology/any_object.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@ macro_rules! any_object {

impl AnyObject<AboutToBeStored> {
/// Insert the object into its respective store
pub fn insert(self, objects: &mut Topology) -> AnyObject<Stored> {
pub fn insert(self, topology: &mut Topology) -> AnyObject<Stored> {
match self {
$(
Self::$ty((handle, object)) => {
objects.$store.insert(
topology.$store.insert(
handle.clone().into(), object
);
handle.into()
Expand Down

0 comments on commit 155a8df

Please sign in to comment.