Update README.md
This commit is contained in:
		@@ -293,7 +293,7 @@ void multi_sink_example2()
 | 
				
			|||||||
template<>
 | 
					template<>
 | 
				
			||||||
struct fmt::formatter<my_type> : fmt::formatter<std::string>
 | 
					struct fmt::formatter<my_type> : fmt::formatter<std::string>
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    auto format(my_type my, format_context &ctx) -> decltype(ctx.out())
 | 
					    auto format(my_type my, format_context &ctx) const -> decltype(ctx.out())
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
        return format_to(ctx.out(), "[my_type i={}]", my.i);
 | 
					        return format_to(ctx.out(), "[my_type i={}]", my.i);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user