@@ -1474,7 +1474,7 @@ public WriteConcern getWriteConcern() {
14741474 * getRetryWrites() method, which returned a primitive {@code boolean} value, and didn't allow callers to differentiate
14751475 * between a false value and an unset value.
14761476 *
1477- * @return the retryWrites value, or null if unset
1477+ * @return the {@code retryWrites} value, or {@code null} if unset
14781478 * @see #getMaxAdaptiveRetries()
14791479 * @since 3.9
14801480 * @mongodb.server.release 3.6
@@ -1488,7 +1488,7 @@ public Boolean getRetryWritesValue() {
14881488 * Gets whether attempts to execute read commands should be retried if they fail due to a retryable error.
14891489 * See {@link MongoClientSettings.Builder#retryReads(boolean)} for more information.
14901490 *
1491- * @return the retryReads value
1491+ * @return the {@code retryReads} value, or {@code null} if unset
14921492 * @see #getMaxAdaptiveRetries()
14931493 * @since 3.11
14941494 * @mongodb.server.release 3.6
@@ -1502,7 +1502,7 @@ public Boolean getRetryReads() {
15021502 * Gets the maximum number of retry attempts when encountering a retryable overload error.
15031503 * See {@link MongoClientSettings.Builder#maxAdaptiveRetries(Integer)} for more information.
15041504 *
1505- * @return The {@code maxAdaptiveRetries} value.
1505+ * @return The {@code maxAdaptiveRetries} value, or {@code null} if unset .
15061506 * @since 5.7
15071507 */
15081508 @ Beta (Reason .CLIENT )
0 commit comments