Skip to content

Commit dc9e377

Browse files
committed
chore: close <pre> tag in javadoc and insert links via <a>
1 parent e709973 commit dc9e377

1 file changed

Lines changed: 20 additions & 20 deletions

File tree

  • src/main/java/io/weaviate/client6/v1/api/collections

src/main/java/io/weaviate/client6/v1/api/collections/Property.java

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -288,14 +288,11 @@ public static ReferenceProperty reference(String name, List<String> collections)
288288
*
289289
* Example: Update property description.
290290
*
291-
* <pre>
292-
* {@code
293-
* Property updated = propertyHeight.edit()
294-
* .description("How tall this building is.")
295-
* .build();
296-
* }
297-
*
298-
* <pre>
291+
* <pre>{@code
292+
* Property updated = propertyHeight.edit()
293+
* .description("How tall this building is.")
294+
* .build();
295+
* }</pre>
299296
*
300297
* @see #edit(Function)
301298
*/
@@ -319,14 +316,10 @@ public Builder edit() {
319316
*
320317
* Example: Update property description.
321318
*
322-
* <pre>
323-
* {@code
324-
* Property updated = propertyHeight.edit(
325-
* p -> p.description("How tall this building is.")
326-
* );
327-
* }
328-
*
329-
* <pre>
319+
* <pre>{@code
320+
* Property updated = propertyHeight.edit(
321+
* p -> p.description("How tall this building is."));
322+
* }</pre>
330323
*
331324
* @see #edit()
332325
*/
@@ -401,7 +394,9 @@ public Builder indexInverted(boolean indexInverted) {
401394
* Filterable indices are not applicable to {@code blob}, {@code object},
402395
* {@code geoCoordinates}, and {@code phoneNumber} properties or arrays thereof.
403396
*
404-
* @see https://docs.weaviate.io/weaviate/concepts/indexing/inverted-index#configure-inverted-indexes
397+
* @see <a href=
398+
* "https://docs.weaviate.io/weaviate/concepts/indexing/inverted-index#configure-inverted-indexes">Inverted
399+
* Indexes</a>
405400
*/
406401
public Builder indexFilterable(boolean indexFilterable) {
407402
this.indexFilterable = indexFilterable;
@@ -415,7 +410,9 @@ public Builder indexFilterable(boolean indexFilterable) {
415410
* <p>
416411
* Applicable to {code int}, {@code number}, and {@code date} properties.
417412
*
418-
* @see https://docs.weaviate.io/weaviate/concepts/indexing/inverted-index#configure-inverted-indexes
413+
* @see <a href=
414+
* "https://docs.weaviate.io/weaviate/concepts/indexing/inverted-index#configure-inverted-indexes">Inverted
415+
* Indexes</a>
419416
*/
420417
public Builder indexRangeFilters(boolean indexRangeFilters) {
421418
this.indexRangeFilters = indexRangeFilters;
@@ -431,7 +428,9 @@ public Builder indexRangeFilters(boolean indexRangeFilters) {
431428
* by default; you should set {@code indexInverted(false)} if you
432429
* do not plan to run BM25/hybrid queries on this property.
433430
*
434-
* @see https://docs.weaviate.io/weaviate/concepts/indexing/inverted-index#configure-inverted-indexes
431+
* @see <a href=
432+
* "https://docs.weaviate.io/weaviate/concepts/indexing/inverted-index#configure-inverted-indexes">Inverted
433+
* Indexes</a>
435434
*/
436435
public Builder indexSearchable(boolean indexSearchable) {
437436
this.indexSearchable = indexSearchable;
@@ -441,7 +440,8 @@ public Builder indexSearchable(boolean indexSearchable) {
441440
/**
442441
* Change tokenization method for this property.
443442
*
444-
* @see https://docs.weaviate.io/academy/py/tokenization/options
443+
* @see <a href=
444+
* "https://docs.weaviate.io/academy/py/tokenization/options">Tokenization</a>
445445
*/
446446
public Builder tokenization(Tokenization tokenization) {
447447
this.tokenization = tokenization;

0 commit comments

Comments
 (0)