tony2001 Sat Aug 21 14:41:46 2004 EDT
Modified files: /phpdoc/en/language/oop5 exceptions.xml Log: two typos http://cvs.php.net/diff.php/phpdoc/en/language/oop5/exceptions.xml?r1=1.2&r2=1.3&ty=u Index: phpdoc/en/language/oop5/exceptions.xml diff -u phpdoc/en/language/oop5/exceptions.xml:1.2 phpdoc/en/language/oop5/exceptions.xml:1.3 --- phpdoc/en/language/oop5/exceptions.xml:1.2 Fri Aug 20 22:43:56 2004 +++ phpdoc/en/language/oop5/exceptions.xml Sat Aug 21 14:41:46 2004 @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="iso-8859-1"?> -<!-- $Revision: 1.2 $ --> +<!-- $Revision: 1.3 $ --> <sect1 id="language.oop5.exceptions"> <title>Exceptions</title> @@ -26,7 +26,7 @@ $error = 'Always throw this error'; throw new Exception($error); - // code following an execption isn't executed. + // code following an exception isn't executed. echo 'Never executed'; } catch (Exception $e) { @@ -39,7 +39,7 @@ </programlisting> </example> - <sect2 id="language.oop5.execptions.extending"> + <sect2 id="language.oop5.exceptions.extending"> <title>Extending Exceptions</title> <para> A User defined Exception class can be defined by extending the built-in