summaryrefslogtreecommitdiff
path: root/AK/String.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'AK/String.cpp')
-rw-r--r--AK/String.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/AK/String.cpp b/AK/String.cpp
index ebb5c70dbc..177844fb61 100644
--- a/AK/String.cpp
+++ b/AK/String.cpp
@@ -441,10 +441,10 @@ InputStream& operator>>(InputStream& stream, String& string)
}
}
-String String::vformatted(StringView fmtstr, Span<const TypeErasedParameter> parameters)
+String String::vformatted(StringView fmtstr, TypeErasedFormatParams params)
{
StringBuilder builder;
- vformat(builder, fmtstr, parameters);
+ vformat(builder, fmtstr, params);
return builder.to_string();
}