diff --git a/docs/tostring.md b/docs/tostring.md index ab2a1377..f354d239 100644 --- a/docs/tostring.md +++ b/docs/tostring.md @@ -37,7 +37,6 @@ namespace Catch { return convertMyTypeToString( value ); } } -} ``` Again ```T``` is your type and ```convertMyTypeToString``` is where you'll write whatever code is necessary to make your type printable. Note that the function must be in the Catch namespace, which itself must be in the global namespace.