Rename argument

This commit is contained in:
Hanno Braun 2022-10-10 19:58:27 +02:00
parent fa90e7f62b
commit 61e9510e7c

View File

@ -77,5 +77,5 @@ pub trait Partial: Default + for<'a> From<&'a Self::Full> {
/// Calling `build` on a partial object that can't infer its missing parts
/// is considered a programmer error, hence why this method doesn't return a
/// [`Result`].
fn build(self, stores: &Objects) -> Self::Full;
fn build(self, objects: &Objects) -> Self::Full;
}