Removed unnecessary namespace separators.

This commit is contained in:
Jeff Welch 2013-02-07 05:28:59 -05:00
parent 19fc33fe7e
commit ee28166512
1 changed files with 3 additions and 3 deletions

View File

@ -29,7 +29,7 @@ Exception Object &0000000078de0f0d000000002003a261 (
'previous' => null
)
*/
echo new Exporter(new \Exception);
echo new Exporter(new Exception);
```
@ -58,8 +58,8 @@ use PHP_Exporter\Exporter;
'previous' => null
)
*/
$exporter = new Exporter(new \Exception);
echo $exporter->diff(new \Exception);
$exporter = new Exporter(new Exception);
echo $exporter->diff(new Exception);
```