Removed carriage return from errors

Signed-off-by: lsemp3d <58790905+lsemp3d@users.noreply.github.com>
This commit is contained in:
lsemp3d
2022-02-17 13:31:35 -08:00
parent bc2589f3e8
commit f346cf8f31
2 changed files with 2 additions and 2 deletions
@@ -393,7 +393,7 @@ namespace ScriptCanvas
}
}
AZStd::string errorMessage = AZStd::string::format("Connection cannot be created between source slot \"%s\" and target slot \"%s\" as the types do not satisfy the type requirement. (%s)\n\rValid types are:\n\r"
AZStd::string errorMessage = AZStd::string::format("Connection cannot be created between source slot \"%s\" and target slot \"%s\" as the types do not satisfy the type requirement. (%s)\nValid types are:\n"
, sourceSlot.GetName().data()
, targetSlot.GetName().data()
, RTTI_GetTypeName());
@@ -73,7 +73,7 @@ namespace ScriptCanvas
return AZ::Success();
}
AZStd::string errorMessage = AZStd::string::format("Connection cannot be created between source slot \"%s\" and target slot \"%s\" as the types do not satisfy the type requirement. (%s)\n\rValid types are:\n\r"
AZStd::string errorMessage = AZStd::string::format("Connection cannot be created between source slot \"%s\" and target slot \"%s\" as the types do not satisfy the type requirement. (%s)\nValid types are:\n"
, sourceSlot.GetName().data()
, targetSlot.GetName().data()
, RTTI_GetTypeName());