From 7bc2f2a90acf1dd0af64a32e606e4b7bc5409978 Mon Sep 17 00:00:00 2001 From: "Daniel P. Brown" Date: Fri, 8 May 2009 13:13:17 +0000 Subject: [PATCH] Just some minor grammatical fixes. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@280154 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/control-structures/goto.xml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/language/control-structures/goto.xml b/language/control-structures/goto.xml index 8461c7a237..43e87fc51a 100644 --- a/language/control-structures/goto.xml +++ b/language/control-structures/goto.xml @@ -1,12 +1,13 @@ - + <literal>goto</literal> - The goto operator can be used to jump to other - instruction in the program. The target place is specified by the label and a - colon and goto is followed by that label. + The goto operator can be used to jump to another + section in the program. The target point is specified by a label + followed by a colon, and the instruction is given as + goto followed by the desired target label. @@ -32,13 +33,13 @@ Bar - The goto operator is available since PHP 5.3. + The goto operator is available as of PHP 5.3. - It is not allowed to jump into loop or switch statement. Fatal error is - issued in such case. + It is not allowed to jump into a loop or switch statement. A fatal + error is issued in such cases.