diff --git a/docs/tostring.md b/docs/tostring.md index dbb6cb8d..409a4ee7 100644 --- a/docs/tostring.md +++ b/docs/tostring.md @@ -33,7 +33,7 @@ If you don't want to provide an ```operator <<``` overload, or you want to conve ``` namespace Catch { - std::string toString( T const& value ) { + template<> std::string toString( T const& value ) { return convertMyTypeToString( value ); } }