mirror of
https://github.com/moodle/moodle.git
synced 2025-08-11 03:46:42 +02:00
MDL-36111 cache: Fixed up typo's and trivial issues
This commit is contained in:
parent
8ccaa296fa
commit
758dbdf894
11 changed files with 30 additions and 24 deletions
4
cache/classes/loaders.php
vendored
4
cache/classes/loaders.php
vendored
|
@ -18,7 +18,7 @@
|
|||
* Cache loaders
|
||||
*
|
||||
* This file is part of Moodle's cache API, affectionately called MUC.
|
||||
* It contains the components that are requried in order to use caching.
|
||||
* It contains the components that are required in order to use caching.
|
||||
*
|
||||
* @package core
|
||||
* @category cache
|
||||
|
@ -795,7 +795,7 @@ class cache implements cache_loader {
|
|||
*/
|
||||
protected function parse_key($key) {
|
||||
// First up if the store supports multiple keys we'll go with that.
|
||||
if ($this->store->supports_multiple_indentifiers()) {
|
||||
if ($this->store->supports_multiple_identifiers()) {
|
||||
$result = $this->definition->generate_multi_key_parts();
|
||||
$result['key'] = $key;
|
||||
return $result;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue