diff --git a/docs/en/reference/caching.rst b/docs/en/reference/caching.rst index 4423fb130f7..b8f956f4a6f 100644 --- a/docs/en/reference/caching.rst +++ b/docs/en/reference/caching.rst @@ -29,10 +29,10 @@ abstract protected methods that each of the drivers must implement: -- \_doFetch($id) -- \_doContains($id) -- \_doSave($id, $data, $lifeTime = false) -- \_doDelete($id) +- doFetch($id) +- doContains($id) +- doSave($id, $data, $lifeTime = false) +- doDelete($id) The public methods ``fetch()``, ``contains()`` etc. use the above protected methods which are implemented by the drivers. The @@ -43,7 +43,7 @@ these methods. This documentation does not cover every single cache driver included with Doctrine. For an up-to-date-list, see the -`cache directory on GitHub `. +`cache directory on GitHub `_. APC ~~~