fix variable name in SplFloat example

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@328099 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Peter Cowburn 2012-10-22 15:12:03 +00:00
parent 3a8dc25d68
commit 3cf1fede29

View file

@ -83,7 +83,7 @@ $newFloat = new SplFloat(3);
try {
$float = 'Try to cast a string value for fun';
} catch (UnexpectedValueException $uve) {
echo $e->getMessage() . PHP_EOL;
echo $uve->getMessage() . PHP_EOL;
}
echo $float . PHP_EOL;