mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
typo in example (doc #62306)
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@326144 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
c923fcd6d0
commit
ec2f544a4c
1 changed files with 2 additions and 2 deletions
|
@ -48,7 +48,7 @@ function doStuff() {
|
|||
try {
|
||||
throw new InvalidArgumentException("You are doing it wrong!", 112);
|
||||
} catch(Exception $e) {
|
||||
throw new MyCustomException("Something happend", 911, $e);
|
||||
throw new MyCustomException("Something happened", 911, $e);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -66,7 +66,7 @@ try {
|
|||
&example.outputs.similar;
|
||||
<screen>
|
||||
<![CDATA[
|
||||
/home/bjori/ex.php:8 Something happend (911) [MyCustomException]
|
||||
/home/bjori/ex.php:8 Something happened (911) [MyCustomException]
|
||||
/home/bjori/ex.php:6 You are doing it wrong! (112) [InvalidArgumentException]
|
||||
]]>
|
||||
</screen>
|
||||
|
|
Loading…
Reference in a new issue