C#: Fix error message.

This commit is contained in:
Michael Nebel
2022-01-05 13:44:18 +01:00
parent c88355ea13
commit 45469a4fe6

View File

@@ -364,7 +364,7 @@ module CsvValidation {
exists(string row, string kind | sourceModel(row) |
kind = row.splitAt(";", 7) and
not kind = "local" and
msg = "Invalid kind \"" + kind + "\" in sink model."
msg = "Invalid kind \"" + kind + "\" in source model."
)
}
}