[FIR] Replace backticks with single quotes in diagnostic messages

This commit is contained in:
Kirill Rakhman
2023-12-21 14:30:23 +01:00
committed by Space Team
parent 945e80f35e
commit 2b53e4ecbd
@@ -2594,13 +2594,13 @@ object FirErrorsDefaultMessages : BaseDiagnosticRendererFactory() {
map.put(
BUILDER_INFERENCE_STUB_RECEIVER,
"The type of a receiver hasn''t been inferred yet. Please specify type argument for generic parameter `{0}` of `{1}` explicitly",
"The type of a receiver hasn''t been inferred yet. Please specify type argument for generic parameter ''{0}'' of ''{1}'' explicitly",
TO_STRING,
TO_STRING
)
map.put(
BUILDER_INFERENCE_MULTI_LAMBDA_RESTRICTION,
"Unstable inference behaviour with multiple lambdas. Please either specify the type argument for generic parameter `{0}` of `{1}` explicitly",
"Unstable inference behaviour with multiple lambdas. Please specify the type argument for generic parameter ''{0}'' of ''{1}'' explicitly",
TO_STRING,
TO_STRING
)