diff --git a/src/libexpr/primops.cc b/src/libexpr/primops.cc index 005a38319..6c8a1f5a8 100644 --- a/src/libexpr/primops.cc +++ b/src/libexpr/primops.cc @@ -450,9 +450,7 @@ static RegisterPrimOp primop_isNull({ .doc = R"( Return `true` if *e* evaluates to `null`, and `false` otherwise. - > **Warning** - > - > This function is *deprecated*; just write `e == null` instead. + This is equivalent to `e == null`. )", .fun = prim_isNull, });