From 35714ef84cfec4cc2d6c0938ea705dd06d194d3f Mon Sep 17 00:00:00 2001
From: JP <jose@palako.com>
Date: Wed, 4 Nov 2020 23:03:38 +0100
Subject: [PATCH] Update iterators2.rs

grammar fix in the description
---
 exercises/standard_library_types/iterators2.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/exercises/standard_library_types/iterators2.rs b/exercises/standard_library_types/iterators2.rs
index 837725f..84d14ae 100644
--- a/exercises/standard_library_types/iterators2.rs
+++ b/exercises/standard_library_types/iterators2.rs
@@ -1,5 +1,5 @@
 // iterators2.rs
-// In this module, you'll learn some of unique advantages that iterators can offer.
+// In this module, you'll learn some of the unique advantages that iterators can offer.
 // Step 1. Complete the `capitalize_first` function to pass the first two cases.
 // Step 2. Apply the `capitalize_first` function to a vector of strings.
 //         Ensure that it returns a vector of strings as well.