Skip to content

Commit 7f00dec

Browse files
committed
Fixes
1 parent a85d356 commit 7f00dec

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

driver-core/src/main/com/mongodb/client/model/expressions/Expression.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@
5858
* of, any explicit type (except the root type {@link Expression} itself).
5959
* See {@link Expressions#ofNull} for more details.
6060
*
61-
* <p>There is no explicit "missing" or "undefined" value. Users may use
62-
* {@link MapExpression#has}.
61+
* <p>This API specifies no "missing" or "undefined" value. Users may use
62+
* {@link MapExpression#has} to check whether a value is present.
6363
*
6464
* <p>This type hierarchy differs from the {@linkplain org.bson} types in that
6565
* they provide computational operations, the numeric types are less granular,
@@ -220,9 +220,9 @@ public interface Expression {
220220

221221
/**
222222
* {@code this} value as a {@linkplain DocumentExpression document} if
223-
* {@code this} is a document or document-like value (such as a
224-
* {@linkplain MapExpression map} or
225-
* {@linkplain EntryExpression entry})
223+
* {@code this} is a document or document-like value (such as all
224+
* {@linkplain MapExpression maps} and all
225+
* {@linkplain EntryExpression entries} created using the present API)
226226
* or the {@code other} document value if
227227
* {@code this} is null, or is missing, or is of any other non-document type.
228228
*
@@ -233,9 +233,9 @@ public interface Expression {
233233

234234
/**
235235
* {@code this} value as a {@linkplain MapExpression map} if
236-
* {@code this} is a map or map-like value (such as a
237-
* {@linkplain DocumentExpression document} or
238-
* {@linkplain EntryExpression entry})
236+
* {@code this} is a map or map-like value (such as all
237+
* {@linkplain DocumentExpression documents} and all
238+
* {@linkplain EntryExpression entries} created using the present API)
239239
* or the {@code other} map value if
240240
* {@code this} is null, or is missing, or is of any other non-map type.
241241
*

0 commit comments

Comments
 (0)