From 72fc44949e4e0e1c0ff0ed2a3409412014e0987f Mon Sep 17 00:00:00 2001 From: davhojt Date: Tue, 24 May 2022 17:47:07 +0300 Subject: [PATCH] docs(collect): correct grammar --- subjects/collect/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/collect/README.md b/subjects/collect/README.md index a92b58cb..5cd01847 100644 --- a/subjects/collect/README.md +++ b/subjects/collect/README.md @@ -2,7 +2,7 @@ ### Instructions -Implement the **function** `bubble_sort` which receives a vector Vec and returns the same vector but in increasing order using the bubble sort algorithm. +Implement the **function** `bubble_sort`, which receives a `Vec` and returns the same vector but in increasing order using the bubble sort algorithm. ### Expected Function