Skip to content

Commit

Permalink
Minor correction to documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean Harvey committed Aug 26, 2014
1 parent 9ec4669 commit 70dfc55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/en/reference/flushable.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ This example uses `[api:SS_Cache]` in some custom code, and the same cache is cl

public function MyCachedContent() {
$cache = SS_Cache::factory('mycache')
$something = $cache->get('mykey');
$something = $cache->load('mykey');
if(!$something) {
$something = 'value to be cached';
$cache->save($something);
Expand Down

0 comments on commit 70dfc55

Please sign in to comment.