Skip to content

Commit b3e1f9d

Browse files
committed
Fix clippy warning
1 parent e187da9 commit b3e1f9d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/operator.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ declare_operator! { "Set Expression Operators" ["https://docs.mongodb.com/manual
298298
declare_operator! { "String Expression Operators" ["https://docs.mongodb.com/manual/reference/operator/aggregation/#string-expression-operators"]:
299299
Concat => "$concat",
300300
IndexOfBytes => "$indexOfBytes",
301-
IndexOfCP => "$indexOfCP",
301+
IndexOfCp => "$indexOfCP",
302302
LeftTrim => "$ltrim",
303303
RegexFind => "$regexFind",
304304
RegexFindAll => "$regexFindAll",
@@ -311,7 +311,7 @@ declare_operator! { "String Expression Operators" ["https://docs.mongodb.com/man
311311
StrCaseCmp => "$strcasecmp",
312312
Substr => "$substr",
313313
SubstrBytes => "$substrBytes",
314-
SubstrCP => "$substrCP",
314+
SubstrCp => "$substrCP",
315315
ToLower => "$toLower",
316316
ToString => "$toString",
317317
Trim => "$trim",

0 commit comments

Comments
 (0)