Skip to content

Commit 09b7bf5

Browse files
committed
chore: move logo to ./logo.png
1 parent 76d5c0e commit 09b7bf5

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Weaviate Java client <img alt='Weaviate logo' src='https://github.com/weaviate/java-client/blob/v6/assets/duke-client6.png' width='200' align='right' />
1+
# Weaviate Java client <img alt='Weaviate logo' src='https://github.com/weaviate/java-client/blob/v6/logo.png' width='200' align='right' />
22

33
[![Build Status](https://github.com/weaviate/java-client/actions/workflows/.github/workflows/test.yaml/badge.svg?branch=main)](https://github.com/weaviate/java-client/actions/workflows/.github/workflows/test.yaml)
44

@@ -183,7 +183,7 @@ WeaviateClient wcd = WeaviateClient.connectToWeaviateCloud("my-cluster-url.io",
183183
> [!TIP]
184184
> The client holds a number of resources (HTTP connection pools, gRPC channel) which must be disposed of correclty then they are no longer needed.
185185
> If the client's lifecycle is tied to that of your app, closing the client via `client.close()` is a good way to do that.
186-
>
186+
>
187187
> Otherwise, use the client inside a [try-with-resources](https://docs.oracle.com/javase/tutorial/essential/exceptions/tryResourceClose.html) statement:
188188
>
189189
>```java
@@ -684,7 +684,7 @@ var song1 = songs.query.byId(
684684
song -> song.returnReferences(QueryReference.single("artist"))
685685
);
686686
System.out.println(
687-
"Artist's last name is: " +
687+
"Artist's last name is: " +
688688
song1.properties().artist().lastName()
689689
);
690690
```
File renamed without changes.

0 commit comments

Comments
 (0)