From 18554ea76cebff3d5dd1bbaf3cc429479a01f9d0 Mon Sep 17 00:00:00 2001 From: Andre Klapper Date: Mon, 29 May 2023 10:28:30 +0200 Subject: [PATCH] Correct spelling mistake in PhutilLock Summary: Closes T15268 Test Plan: Only changes to spelling. Reviewers: O1 Blessed Committers, valerio.bozzolan Reviewed By: O1 Blessed Committers, valerio.bozzolan Subscribers: speck, tobiaswiese, valerio.bozzolan, Matthew, Cigaryno Maniphest Tasks: T15268 Differential Revision: https://we.phorge.it/D25253 --- src/filesystem/PhutilLock.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/filesystem/PhutilLock.php b/src/filesystem/PhutilLock.php index f152b521..f69d7544 100644 --- a/src/filesystem/PhutilLock.php +++ b/src/filesystem/PhutilLock.php @@ -194,7 +194,7 @@ abstract class PhutilLock extends Phobject { if (!$this->locked) { $name = $this->getName(); throw new Exception( - pht("Lock '%s is not locked by this process!", $name)); + pht("Lock '%s' is not locked by this process!", $name)); } $this->doUnlock();