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.