@@ -70,7 +70,7 @@ public function test_null_values_are_memoized_when_retrieving_single_value()
7070 $ this ->assertNull ($ memoized );
7171 }
7272
73- public function test_it_can_memoize_when_retrieving_mulitple_values ()
73+ public function test_it_can_memoize_when_retrieving_multiple_values ()
7474 {
7575 Cache::put ('name.0 ' , 'Tim ' , 60 );
7676 Cache::put ('name.1 ' , 'Taylor ' , 60 );
@@ -116,7 +116,7 @@ public function test_it_uses_correct_keys_for_getMultiple()
116116 $ this ->assertSame ($ cacheValue , $ memoValue );
117117 }
118118
119- public function test_null_values_are_memoized_when_retrieving_mulitple_values ()
119+ public function test_null_values_are_memoized_when_retrieving_multiple_values ()
120120 {
121121 $ live = Cache::getMultiple (['name.0 ' , 'name.1 ' ]);
122122 $ memoized = Cache::memo ()->getMultiple (['name.0 ' , 'name.1 ' ]);
@@ -132,7 +132,7 @@ public function test_null_values_are_memoized_when_retrieving_mulitple_values()
132132 $ this ->assertSame ($ memoized , ['name.0 ' => null , 'name.1 ' => null ]);
133133 }
134134
135- public function test_it_can_retrieve_already_memoized_and_not_yet_memoized_values_when_retrieving_mulitple_values ()
135+ public function test_it_can_retrieve_already_memoized_and_not_yet_memoized_values_when_retrieving_multiple_values ()
136136 {
137137 Cache::put ('name.0 ' , 'Tim ' , 60 );
138138 Cache::put ('name.1 ' , 'Taylor ' , 60 );
0 commit comments