@@ -133,7 +133,7 @@ describe('Unique Arrays - uniquifyArray', function () {
133
133
expect ( uniquifyArray ( [ 'Ironhack' , 'Ironhack' , 'Ironhack' ] ) ) . toEqual ( [ 'Ironhack' ] ) ;
134
134
} ) ;
135
135
136
- it ( 'returns the same array when no element is repeted ' , function ( ) {
136
+ it ( 'returns the same array when no element is repeated ' , function ( ) {
137
137
expect ( uniquifyArray ( [ 'Cat' , 'Dog' , 'Cow' ] ) ) . toEqual ( [ 'Cat' , 'Dog' , 'Cow' ] ) ;
138
138
} ) ;
139
139
@@ -164,7 +164,7 @@ describe('Finding Elements - doesWordExist', function () {
164
164
} ) ;
165
165
} ) ;
166
166
167
- describe ( 'Counting Repetion - howManyTimes' , function ( ) {
167
+ describe ( 'Counting Repetition - howManyTimes' , function ( ) {
168
168
it ( 'Defines howManyTimes' , function ( ) {
169
169
expect ( typeof howManyTimes ) . toBe ( 'function' ) ;
170
170
} ) ;
@@ -186,7 +186,7 @@ describe('Counting Repetion - howManyTimes', function () {
186
186
} ) ;
187
187
} ) ;
188
188
189
- describe ( 'Counting Repetion - greatestProduct' , function ( ) {
189
+ describe ( 'Bonus Quest - greatestProduct' , function ( ) {
190
190
it ( 'Defines greatestProduct' , function ( ) {
191
191
expect ( typeof greatestProduct ) . toBe ( 'function' ) ;
192
192
} ) ;
0 commit comments