didou Thu Jan 15 07:42:29 2004 EDT
Modified files:
/phpdoc/en/reference/gmp reference.xml
Log:
CS : Function declarations follow the 'one true brace' convention
Index: phpdoc/en/reference/gmp/reference.xml
diff -u phpdoc/en/reference/gmp/reference.xml:1.7
phpdoc/en/reference/gmp/reference.xml:1.8
--- phpdoc/en/reference/gmp/reference.xml:1.7 Wed Dec 17 09:32:16 2003
+++ phpdoc/en/reference/gmp/reference.xml Thu Jan 15 07:42:28 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.7 $ -->
+<!-- $Revision: 1.8 $ -->
<reference id="ref.gmp">
<title>GMP functions</title>
<titleabbrev>GMP</titleabbrev>
@@ -74,7 +74,8 @@
<programlisting role="php">
<![CDATA[
<?php
-function fact($x) {
+function fact($x)
+{
if ($x <= 1) {
return 1;
} else {