Skip to content

Commit db73932

Browse files
committed
fix typo
1 parent 6f1ea89 commit db73932

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal-api/src/main/java/datadog/trace/bootstrap/config/provider/StableConfigParser.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ private static boolean matchOperator(String value, String operator, List<String>
108108
if (value == null || operator == null) {
109109
return false;
110110
}
111-
if ("exist".equals(operator)) {
111+
if ("exists".equals(operator)) {
112112
return true;
113113
}
114114
if (matches.isEmpty()) {
@@ -136,7 +136,7 @@ private static boolean matchOperator(String value, String operator, List<String>
136136
return false;
137137
}
138138

139-
// We do all of the case insensitivity modifications in this function, because each selector will
139+
// We do all the case insensitivity modifications in this function, because each selector will
140140
// be viewed just once
141141
static boolean selectorMatch(String origin, List<String> matches, String operator, String key) {
142142
if (operator == null) {

0 commit comments

Comments
 (0)