Skip to content

Commit d391af0

Browse files
committed
Merge pull request laravel#565 from fierycode/4.1
Update cache.md
2 parents 2f34aba + f7898c5 commit d391af0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cache.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ To access a tagged cache, pass the same ordered list of tags used to save it.
113113

114114
$anne = Cache::tags('people', 'artists')->get('Anne');
115115

116-
$john = Cache::tags(array('people', 'authors')->get('John);
116+
$john = Cache::tags(array('people', 'authors'))->get('John);
117117

118118
You may flush all items tagged with a name or list of names. For example, this statement would remove all caches tagged with either `people`, `authors`, or both. So, both "Anne" and "John" would be removed from the cache:
119119

0 commit comments

Comments
 (0)