return a slice!

This commit is contained in:
Douglas Creager 2025-12-15 11:16:21 -05:00
parent 483f34207b
commit a914071640
1 changed files with 1 additions and 1 deletions

View File

@ -12581,7 +12581,7 @@ impl<'db> CallableTypes<'db> {
}
}
fn as_slice(&self) -> &SmallVec<[CallableType<'db>; 1]> {
fn as_slice(&self) -> &[CallableType<'db>] {
&self.0
}