From dcb7aac4d757e181b669099f3522b6ab99448337 Mon Sep 17 00:00:00 2001 From: Maarten van Gompel Date: Sun, 22 Sep 2024 15:13:58 +0200 Subject: [PATCH] other minor rename --- src/annotationdataset.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/annotationdataset.rs b/src/annotationdataset.rs index c01b97a..2f91458 100644 --- a/src/annotationdataset.rs +++ b/src/annotationdataset.rs @@ -718,8 +718,8 @@ pub(crate) struct DeserializeAnnotationDataSet<'a> { } impl<'a> DeserializeAnnotationDataSet<'a> { - pub fn new(store: &'a mut AnnotationDataSet) -> Self { - Self { dataset: store } + pub fn new(dataset: &'a mut AnnotationDataSet) -> Self { + Self { dataset } } }