docs(highest): clarify function prototype

This commit is contained in:
Michele Sessa 2023-03-01 14:34:54 +00:00 committed by Michele
parent 77df8ac2a4
commit 33911a4b64
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ pub struct Numbers<'a> {
}
impl Numbers {
pub fn new(&[u32]) -> Self {}
pub fn new(numbers: &[u32]) -> Self {}
pub fn list(&self) -> &[u32] {}