Skip to content

Commit b228f61

Browse files
committed
chore: fix javadoc
1 parent 4c6b7b4 commit b228f61

2 files changed

Lines changed: 3 additions & 5 deletions

File tree

src/main/java/io/weaviate/client6/v1/api/WeaviateUnsupportedVersionException.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@
44

55
/**
66
* This exception is thrown when the client refuses to talk to an unsupported
7-
* version of the server.
8-
*
9-
* @see VersionSupport#MINIMAL_SUPPORTED_VERSION.
7+
* version of the server, see {@link VersionSupport#MINIMAL_SUPPORTED_VERSION}.
108
*/
119
public class WeaviateUnsupportedVersionException extends WeaviateException {
1210
public WeaviateUnsupportedVersionException(String actual) {

src/main/java/io/weaviate/client6/v1/internal/VersionSupport.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ public SemanticVersion(int major, int minor) {
2121
}
2222

2323
/**
24-
* Parse semantic version from a formatted string, e.g.
25-
* {@code "(v)1.23.6-rc.1"}.
24+
* Parse semantic version from a formatted string,
25+
* e.g. {@code "(v)1.23.6-rc.1"}.
2626
*/
2727
public static SemanticVersion of(String version) {
2828
var parts = version.replaceFirst("v", "").split("\\.");

0 commit comments

Comments
 (0)