Everywhere: Fix incorrect uses of String::format and StringBuilder::appendf

These changes are arbitrarily divided into multiple commits to make it
easier to find potentially introduced bugs with git bisect.
This commit is contained in:
Sahan Fernando 2021-01-12 00:38:09 +11:00 committed by Andreas Kling
commit 6d97b623cd
Notes: sideshowbarker 2024-07-18 23:55:59 +09:00
9 changed files with 10 additions and 10 deletions

View file

@ -31,7 +31,7 @@ namespace Gfx {
String Triangle::to_string() const
{
return String::format("({},{},{})", m_a, m_b, m_c);
return String::formatted("({},{},{})", m_a, m_b, m_c);
}
const LogStream& operator<<(const LogStream& stream, const Triangle& value)