Skip to content

Commit

Permalink
Fix bug in percentile* statType validation (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
pradh authored Feb 11, 2022
1 parent f4898d4 commit 114ee14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/src/main/java/org/datacommons/util/Vocabulary.java
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ public static boolean isStatValueProperty(String val) {
String lcVal = val.toLowerCase();
return lcVal.endsWith("value")
|| lcVal.endsWith("estimate")
|| lcVal.endsWith("percentile")
|| lcVal.startsWith("percentile")
|| lcVal.equals("marginoferror")
|| lcVal.endsWith("stderror")
|| lcVal.endsWith("samplesize")
Expand Down

0 comments on commit 114ee14

Please sign in to comment.