Rename argument

This commit is contained in:
Hanno Braun 2022-10-10 19:57:21 +02:00
parent f54bfe9bc4
commit d5abf06a46

View File

@ -27,8 +27,8 @@ macro_rules! impl_traits {
impl Partial for $partial {
type Full = $full;
fn build(self, stores: &Objects) -> Self::Full {
self.build(stores)
fn build(self, objects: &Objects) -> Self::Full {
self.build(objects)
}
}