Skip to content

Commit 78a8864

Browse files
committed
chore: fix broken javadoc
1 parent 5dc3a1c commit 78a8864

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ public WeaviateCollectionsClient(RestTransport restTransport, GrpcTransport grpc
2525
* Obtain a handle to send requests to a particular collection.
2626
* The returned object is thread-safe.
2727
*
28-
* @returns a handle for a collection with {@code Map<String, Object>}
29-
* properties.
28+
* @return a handle for a collection with {@code Map<String, Object>}
29+
* properties.
3030
*/
3131
public CollectionHandle<Map<String, Object>> use(String collectionName) {
3232
return new CollectionHandle<>(restTransport, grpcTransport, CollectionDescriptor.ofMap(collectionName));
@@ -35,7 +35,7 @@ public CollectionHandle<Map<String, Object>> use(String collectionName) {
3535
/**
3636
* Create a new Weaviate collection with default configuration.
3737
*
38-
* @returns the configuration of the created collection.
38+
* @return the configuration of the created collection.
3939
* @throws WeaviateApiException in case the server returned with an
4040
* error status code.
4141
* @throws IOException in case the request was not sent successfully
@@ -50,7 +50,7 @@ public CollectionConfig create(String name) throws IOException {
5050
* Create and configure a new Weaviate collection. See
5151
* {@link CollectionConfig.Builder} for available options.
5252
*
53-
* @returns the configuration of the created collection.
53+
* @return the configuration of the created collection.
5454
* @throws WeaviateApiException in case the server returned with an
5555
* error status code.
5656
* @throws IOException in case the request was not sent successfully
@@ -65,7 +65,7 @@ public CollectionConfig create(String name,
6565
/**
6666
* Create a new Weaviate collection with {@link CollectionConfig}.
6767
*
68-
* @returns the configuration of the created collection.
68+
* @return the configuration of the created collection.
6969
* @throws WeaviateApiException in case the server returned with an
7070
* error status code.
7171
* @throws IOException in case the request was not sent successfully
@@ -80,7 +80,7 @@ public CollectionConfig create(CollectionConfig collection) throws IOException {
8080
/**
8181
* Fetch Weaviate collection configuration.
8282
*
83-
* @returns the collection configuration if one with this name exists.
83+
* @return the collection configuration if one with this name exists.
8484
* @throws WeaviateApiException in case the server returned with an
8585
* error status code.
8686
* @throws IOException in case the request was not sent successfully
@@ -94,7 +94,7 @@ public Optional<CollectionConfig> getConfig(String name) throws IOException {
9494
/**
9595
* Fetch configurations for all collections in Weaviate.
9696
*
97-
* @returns a list of collection configurations.
97+
* @return a list of collection configurations.
9898
* @throws WeaviateApiException in case the server returned with an
9999
* error status code.
100100
* @throws IOException in case the request was not sent successfully

0 commit comments

Comments
 (0)