php-documentation-list | 2003101

[PHP-DOC] cvs: phpdoc /en/reference/dir/functions chdir.xml From: Mehdi Achour (didou <email protected>)
Date: 10/13/03

didou Mon Oct 13 08:02:13 2003 EDT

  Modified files:
    /phpdoc/en/reference/dir/functions chdir.xml
  Log:
  better title and little CS
  
Index: phpdoc/en/reference/dir/functions/chdir.xml
diff -u phpdoc/en/reference/dir/functions/chdir.xml:1.5 phpdoc/en/reference/dir/functions/chdir.xml:1.6
--- phpdoc/en/reference/dir/functions/chdir.xml:1.5 Mon Oct 13 05:52:52 2003
+++ phpdoc/en/reference/dir/functions/chdir.xml Mon Oct 13 08:02:13 2003
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.5 $ -->
+<!-- $Revision: 1.6 $ -->
 <!-- splitted from ./en/functions/dir.xml, last change in rev 1.2 -->
   <refentry id="function.chdir">
    <refnamediv>
@@ -18,7 +18,7 @@
     </para>
     <para>
      <example>
- <title><function>chdir</function></title>
+ <title><function>chdir</function> example</title>
        <programlisting role="php">
 <![CDATA[
 <?php
@@ -26,7 +26,7 @@
 // current directory
 echo getcwd() . "\n";
         
-chdir ('public_html');
+chdir('public_html');
         
 // current direcorty
 echo getcwd() . "\n";