From: Aaron Schulz Date: Sun, 28 Aug 2016 02:39:28 +0000 (-0700) Subject: Fix database class doc typos X-Git-Tag: 1.31.0-rc.0~5861^2 X-Git-Url: http://git.cyclocoop.org/%28?a=commitdiff_plain;h=32da604bab72bacc4238e1cee0c356f997cce65f;p=lhc%2Fweb%2Fwiklou.git Fix database class doc typos Change-Id: I3e8c4e31326cb4f1a6b427348b42975fba86e62b --- diff --git a/includes/db/IDatabase.php b/includes/db/IDatabase.php index 1aa931e63f..b689e8230c 100644 --- a/includes/db/IDatabase.php +++ b/includes/db/IDatabase.php @@ -42,7 +42,7 @@ interface IDatabase { /** @var string Transaction is requested by regular caller outside of the DB layer */ const TRANSACTION_EXPLICIT = ''; - /** @var string Transaction is requested interally via DBO_TRX/startAtomic() */ + /** @var string Transaction is requested internally via DBO_TRX/startAtomic() */ const TRANSACTION_INTERNAL = 'implicit'; /** @var string Transaction operation comes from service managing all DBs */ @@ -50,7 +50,7 @@ interface IDatabase { /** @var string Transaction operation comes from the database class internally */ const FLUSHING_INTERNAL = 'flush'; - /** @var string No not remember the prior flags */ + /** @var string Do not remember the prior flags */ const REMEMBER_NOTHING = ''; /** @var string Remember the prior flags */ const REMEMBER_PRIOR = 'remember';