Skip to content

Commit 1e37066

Browse files
authored
Add missing code close tick in LiteralGuarantee docs (#10859)
1 parent 351600f commit 1e37066

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datafusion/physical-expr/src/utils/guarantee.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ use std::sync::Arc;
6464
/// 1. The column must be one the values for the predicate to be `true`. If the
6565
/// column takes on any other value, the predicate can not evaluate to `true`.
6666
/// For example,
67-
/// `(a = 1)`, `(a = 1 OR a = 2) or `a IN (1, 2, 3)`
67+
/// `(a = 1)`, `(a = 1 OR a = 2)` or `a IN (1, 2, 3)`
6868
///
6969
/// 2. The column must NOT be one of the values for the predicate to be `true`.
7070
/// If the column can ONLY take one of these values, the predicate can not

0 commit comments

Comments
 (0)