From 84cc936ab64ecaecc6272ebea28581ced68f8e09 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Thu, 7 Mar 2019 12:25:02 -0800 Subject: [PATCH] objectcache: fix comment typo for addBusyCallback() Change-Id: I05a4d84d40b81ba25b89238b36cdb64c71e2de1e --- includes/libs/objectcache/BagOStuff.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ) { -- 2.20.1