Skip to content

Commit 8882d59

Browse files
authored
[flang] Fix typo in warning message text (llvm#110888)
I accidentally deleted a space character; put it back.
1 parent 9dca83f commit 8882d59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flang/lib/Semantics/check-call.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ static void ConvertIntegerActual(evaluate::Expr<evaluate::SomeType> &actual,
265265
if (!semanticsContext.IsEnabled(
266266
common::LanguageFeature::ActualIntegerConvertedToSmallerKind)) {
267267
messages.Say(
268-
"Actual argument scalar expression of type INTEGER(%d) cannot beimplicitly converted to smaller dummy argument type INTEGER(%d)"_err_en_US,
268+
"Actual argument scalar expression of type INTEGER(%d) cannot be implicitly converted to smaller dummy argument type INTEGER(%d)"_err_en_US,
269269
actualType.type().kind(), dummyType.type().kind());
270270
} else if (semanticsContext.ShouldWarn(common::LanguageFeature::
271271
ActualIntegerConvertedToSmallerKind)) {

0 commit comments

Comments
 (0)