1
0
mirror of https://github.com/pcvolkmer/osc-variant.git synced 2025-04-19 19:56:50 +00:00

Update issue code and description

This commit is contained in:
Paul-Christian Volkmer 2023-11-07 08:10:50 +01:00
parent 352f5e23fc
commit 6a0a356120

View File

@ -76,8 +76,10 @@ fn check_line(line: usize, content: String) -> Vec<CheckNotice> {
if content.contains(" </Bezeichnung>") {
result.append(&mut vec![CheckNotice::ErrorWithCode {
code: "OSTARSUPP-13334".to_string(),
description: "Leerzeichen am Ende der Plausibilitätsregel-Bezeichnung".to_string(),
code: "2023-0001".to_string(),
description:
"Leerzeichen am Ende der Plausibilitätsregel-Bezeichnung (OSTARSUPP-13334)"
.to_string(),
line: Some(line),
example: Some(content.trim().to_string()),
}])