We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79efeee commit f0bff76Copy full SHA for f0bff76
src/iceberg/expression/expression.h
@@ -227,8 +227,7 @@ class ICEBERG_EXPORT Or : public Expression {
227
/// \return A Result containing a shared pointer to the folded Or expression, or an
228
/// error if left or right is nullptr
229
/// \note A folded Or expression is an expression that is equivalent to the original
230
- /// that is equivalent to the original expression, but with the Or operation removed.
231
- /// For example, (false or x) = x.
+ /// expression, but with the Or operation removed. For example, (false or x) = x.
232
template <typename... Args>
233
static Result<std::shared_ptr<Expression>> MakeFolded(std::shared_ptr<Expression> left,
234
std::shared_ptr<Expression> right,
0 commit comments