fix typo in error message

This commit is contained in:
Grahame Grieve 2022-10-13 06:49:20 +11:00
parent 9dd886ee2b
commit 3dfce595fe
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ public class CodeSystemValidator extends BaseValidator {
}
if (!Utilities.noString(hierarchyMeaning)) {
NodeStack s = stack.push(cs.getNamedChild("hierarchyMeaning"), -1, null, null);
rule(errors, IssueType.BUSINESSRULE, s.getLiteralPath(), false, I18nConstants.CODESYSTEM_CS_HL7_PRESENT_ELEMENT_SUPPL, "caseSensitive");
rule(errors, IssueType.BUSINESSRULE, s.getLiteralPath(), false, I18nConstants.CODESYSTEM_CS_HL7_PRESENT_ELEMENT_SUPPL, "hierarchyMeaning");
}
} else {