File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
driver-core/src/main/com/mongodb/client/model/search Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -64,8 +64,8 @@ public interface FuzzySearchOptions extends Bson {
64
64
* The following code creates two functionally equivalent {@link FuzzySearchOptions} objects,
65
65
* though they may not be {@linkplain Object#equals(Object) equal}.
66
66
* <pre>{@code
67
- * FuzzySearchOptions options1 = FuzzySearchOptions.fuzzySearchOptions().maxEdits(1)
68
- * FuzzySearchOptions options2 = FuzzySearchOptions.fuzzySearchOptions().option("maxEdits", 1)
67
+ * FuzzySearchOptions options1 = FuzzySearchOptions.fuzzySearchOptions().maxEdits(1);
68
+ * FuzzySearchOptions options2 = FuzzySearchOptions.fuzzySearchOptions().option("maxEdits", 1);
69
69
* }</pre>
70
70
*
71
71
* @param name The option name.
Original file line number Diff line number Diff line change @@ -75,8 +75,8 @@ public interface SearchOptions extends Bson {
75
75
* The following code creates two functionally equivalent {@link SearchOptions} objects,
76
76
* though they may not be {@linkplain Object#equals(Object) equal}.
77
77
* <pre>{@code
78
- * SearchOptions options1 = SearchOptions.defaultSearchOptions().index("indexName")
79
- * SearchOptions options2 = SearchOptions.defaultSearchOptions().option("index", "indexName")
78
+ * SearchOptions options1 = SearchOptions.defaultSearchOptions().index("indexName");
79
+ * SearchOptions options2 = SearchOptions.defaultSearchOptions().option("index", "indexName");
80
80
* }</pre>
81
81
*
82
82
* @param name The option name.
You can’t perform that action at this time.
0 commit comments