Clarify order of elements

Co-authored-by: Mo Bitar <76752051+mo8it@users.noreply.github.com>
This commit is contained in:
Remo Senekowitsch 2026-05-14 23:31:11 +02:00 committed by GitHub
parent 97a723508c
commit f3036315a0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,5 +1,5 @@
fn elems_to_vec(a: i32, b: i32, c: i32) -> Vec<i32> {
// TODO: Return a vector containing the elements a, b and c.
// TODO: Return a vector containing the elements a, b and c (in this order).
// Use the "vec!" macro.
}