From ee0237cec354ae88ae4721bd77d5a6bfdf89cf82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-S=C3=A9bastien=20Goupil?= <jsgoupil@php.net> Date: Wed, 26 Oct 2005 07:58:05 +0000 Subject: [PATCH] transform if expression to look like while, for, ... git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@199234 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/control-structures.xml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/language/control-structures.xml b/language/control-structures.xml index 8fc7e51b2c..c761d22334 100644 --- a/language/control-structures.xml +++ b/language/control-structures.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="iso-8859-1"?> -<!-- $Revision: 1.128 $ --> +<!-- $Revision: 1.129 $ --> <chapter id="language.control-structures"> <title>Control Structures</title> @@ -24,10 +24,8 @@ <informalexample> <programlisting> <![CDATA[ -<?php -if (expression) +if (expr) statement -?> ]]> </programlisting> </informalexample>