docs(collect): correct grammar

This commit is contained in:
davhojt 2022-05-24 17:47:07 +03:00 committed by Dav Hojt
parent 64357157da
commit 72fc44949e
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
### Instructions
Implement the **function** `bubble_sort` which receives a vector Vec<i32> and returns the same vector but in increasing order using the bubble sort algorithm.
Implement the **function** `bubble_sort`, which receives a `Vec<i32>` and returns the same vector but in increasing order using the bubble sort algorithm.
### Expected Function