From: Kunal Mehta Date: Wed, 1 Mar 2017 04:50:31 +0000 (-0800) Subject: api.php: Fully spell out "constructor" X-Git-Tag: 1.31.0-rc.0~3939^2 X-Git-Url: http://git.cyclocoop.org/%24self?a=commitdiff_plain;h=8605fba74048b0c623eb8e0d5e7ce41c4cf34cc8;p=lhc%2Fweb%2Fwiklou.git api.php: Fully spell out "constructor" There's no real reason to abbreviate it. Change-Id: Ib85d5e420bfdc1eca4d83265e2d9c3f719d7fa2b --- diff --git a/api.php b/api.php index 6e75fb746a..a6ce3b25e3 100644 --- a/api.php +++ b/api.php @@ -63,7 +63,7 @@ RequestContext::getMain()->setTitle( $wgTitle ); try { /* Construct an ApiMain with the arguments passed via the URL. What we get back * is some form of an ApiMain, possibly even one that produces an error message, - * but we don't care here, as that is handled by the ctor. + * but we don't care here, as that is handled by the constructor. */ $processor = new ApiMain( RequestContext::getMain(), $wgEnableWriteAPI );