From 18c0c7cdb3fc7cdca42a51a40d124db1fac06ff1 Mon Sep 17 00:00:00 2001 From: Hannes Magnusson Date: Tue, 20 Nov 2007 23:05:13 +0000 Subject: [PATCH] Fix markup (wrap that simpara in a sect1 block) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@246544 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/control-structures.xml | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/language/control-structures.xml b/language/control-structures.xml index 435752bba6..a2793ccb10 100644 --- a/language/control-structures.xml +++ b/language/control-structures.xml @@ -1,18 +1,21 @@ - + Control Structures - - Any PHP script is built out of a series of statements. A statement - can be an assignment, a function call, a loop, a conditional - statement or even a statement that does nothing (an empty - statement). Statements usually end with a semicolon. In addition, - statements can be grouped into a statement-group by encapsulating a - group of statements with curly braces. A statement-group is a - statement by itself as well. The various statement types are - described in this chapter. - + + Introduction + + Any PHP script is built out of a series of statements. A statement + can be an assignment, a function call, a loop, a conditional + statement or even a statement that does nothing (an empty + statement). Statements usually end with a semicolon. In addition, + statements can be grouped into a statement-group by encapsulating a + group of statements with curly braces. A statement-group is a + statement by itself as well. The various statement types are + described in this chapter. + + <literal>if</literal>