refactor(scrollbar): use variable names over unnamed pair content

This commit is contained in:
EdJoPaTo
2024-02-24 11:21:48 +01:00
parent 49bfa7e5f0
commit 9a0b26f5c9
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -133,8 +133,8 @@ where
/// See [`experimental_scrollbar`](Self::experimental_scrollbar)
#[must_use]
pub const fn experimental_scrollbar_margin(mut self, margin: (u16, u16)) -> Self {
self.scrollbar_margin = margin;
pub const fn experimental_scrollbar_margin(mut self, begin: u16, end: u16) -> Self {
self.scrollbar_margin = (begin, end);
self
}