From 3aceb07efd495b65f51e3a0a1bbac2371a33f63c Mon Sep 17 00:00:00 2001 From: Adam Harvey Date: Fri, 23 Jul 2010 09:02:14 +0000 Subject: [PATCH] MFH: fix bug #52380 (Typo in lcfirst comment docs). --- NEWS | 1 + ext/standard/string.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 833fd28573..be24522294 100644 --- a/NEWS +++ b/NEWS @@ -2,6 +2,7 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ?? ??? 2010, PHP 5.3.4 +- Fixed bug #52380 (Typo in lcfirst comment docs). (Adam) 22 Jul 2010, PHP 5.3.3 - Upgraded bundled sqlite to version 3.6.23.1. (Ilia) diff --git a/ext/standard/string.c b/ext/standard/string.c index 6e0b298101..c371a5873a 100644 --- a/ext/standard/string.c +++ b/ext/standard/string.c @@ -2571,7 +2571,7 @@ static void php_lcfirst(char *str) } /* }}} */ -/* {{{ proto string ucfirst(string str) +/* {{{ proto string lcfirst(string str) Make a string's first character lowercase */ PHP_FUNCTION(lcfirst) { -- 2.50.1