Fix typo in ConceptMapRenderer.java

This commit is contained in:
Anton Vasetenkov 2023-05-19 21:16:06 +02:00 committed by GitHub
parent ff8943061c
commit b7e802ee79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -385,7 +385,7 @@ public class ConceptMapRenderer extends TerminologyRenderer {
} else if ("equivalent".equals(code)) {
return "is equivalent to";
} else if ("source-is-narrower-than-target".equals(code)) {
return "is narrower then";
return "is narrower than";
} else if ("source-is-broader-than-target".equals(code)) {
return "is broader than";
} else if ("not-related-to".equals(code)) {
@ -475,4 +475,4 @@ public class ConceptMapRenderer extends TerminologyRenderer {
return null;
}
}
}