From 30888f59bf4c943c45414456a28001504824bfb9 Mon Sep 17 00:00:00 2001 From: Phil Nash Date: Fri, 12 Dec 2014 08:33:10 +0000 Subject: [PATCH] removed spurious } --- docs/tostring.md | 1 - 1 file changed, 1 deletion(-) 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.