Skip to content

Commit 8c18ccd

Browse files
committed
Fix typo in messaging
1 parent 34d20ce commit 8c18ccd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ERROR_MESSAGES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Any text in the following format `(Example)` are considered variables to be fill
1414
* 9 : CT - Aggregate count value must be an integer
1515
* 11 : CT - This PI Reference and Results is missing a required Measure Performed child
1616
* 12 : CT - This PI Measure Performed Reference and Results requires a single Measure ID
17-
* 13 : CT - Denominator count must be less than equal to Initial Population count for the measure population `(measure population id)`
17+
* 13 : CT - Denominator count must be less than or equal to Initial Population count for the measure population `(measure population id)`
1818
* 14 : CT - The electronic measure id: `(Current eMeasure ID)` requires `(Number of Subpopulations required)` `(Type of Subpopulation required)`(s) but there are `(Number of Subpopulations existing)`
1919
* 15 : CT - PI Numerator Denominator element should have a PI Section element as a parent
2020
* 16 : CT - PI Numerator Denominator element does not contain a measure name ID

commons/src/main/java/gov/cms/qpp/conversion/model/error/ProblemCode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public enum ProblemCode implements LocalizedProblem {
3939
+ "Measure Performed child"),
4040
PI_MEASURE_PERFORMED_RNR_MEASURE_ID_NOT_SINGULAR(12, "This PI Measure Performed Reference and Results requires "
4141
+ "a single Measure ID"),
42-
DENOMINATOR_COUNT_INVALID(13, "Denominator count must be less than equal to Initial Population count "
42+
DENOMINATOR_COUNT_INVALID(13, "Denominator count must be less than or equal to Initial Population count "
4343
+ "for the measure population `(measure population id)`", true),
4444
POPULATION_CRITERIA_COUNT_INCORRECT(14,
4545
"The electronic measure id: `(Current eMeasure ID)` requires `(Number of Subpopulations required)` "

0 commit comments

Comments
 (0)