From: Aaron Schulz Date: Thu, 7 Mar 2019 20:25:02 +0000 (-0800) Subject: objectcache: fix comment typo for addBusyCallback() X-Git-Tag: 1.34.0-rc.0~2611^2 X-Git-Url: http://git.cyclocoop.org/data/Fool?a=commitdiff_plain;h=84cc936ab64ecaecc6272ebea28581ced68f8e09;p=lhc%2Fweb%2Fwiklou.git objectcache: fix comment typo for addBusyCallback() Change-Id: I05a4d84d40b81ba25b89238b36cdb64c71e2de1e --- diff --git a/includes/libs/objectcache/BagOStuff.php b/includes/libs/objectcache/BagOStuff.php index a7ef3d5781..e58b422c70 100644 --- a/includes/libs/objectcache/BagOStuff.php +++ b/includes/libs/objectcache/BagOStuff.php @@ -710,7 +710,7 @@ abstract class BagOStuff implements IExpiringStore, LoggerAwareInterface { * The callbacks may or may not be called ever, in any particular order. * They are likely to be invoked when something WRITE_SYNC is used used. * They should follow a caching pattern as shown below, so that any code - * using the word will get it's result no matter what happens. + * using the work will get it's result no matter what happens. * @code * $result = null; * $workCallback = function () use ( &$result ) {