1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 15:35:08 +00:00

Help: Use new format functions.

This commit is contained in:
asynts 2020-10-05 18:05:35 +02:00 committed by Andreas Kling
parent 30b9dff5aa
commit c776d76b71
5 changed files with 7 additions and 7 deletions

View file

@ -34,7 +34,7 @@ public:
ManualSectionNode(String section, String name)
: m_section(section)
, m_full_name(String::format("%s. %s", section.characters(), name.characters()))
, m_full_name(String::formatted("{}. {}", section, name))
{
}