Skip to content

Commit 3c7714e

Browse files
committed
Fix javadoc
1 parent a3a0464 commit 3c7714e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

modules/cassandra/src/main/java/org/testcontainers/cassandra/CassandraContainer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ public String getPassword() {
159159
/**
160160
* Retrieve an {@link InetSocketAddress} for connecting to the Cassandra container via the driver.
161161
*
162-
* @return A InetSocketAddrss representation of this Cassandra container's host and port.
162+
* @return A InetSocketAddress representation of this Cassandra container's host and port.
163163
*/
164164
public InetSocketAddress getContactPoint() {
165165
return new InetSocketAddress(getHost(), getMappedPort(CQL_PORT));

modules/cassandra/src/main/java/org/testcontainers/containers/CassandraContainer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ public static Cluster getCluster(ContainerState containerState) {
228228
/**
229229
* Retrieve an {@link InetSocketAddress} for connecting to the Cassandra container via the driver.
230230
*
231-
* @return A InetSocketAddrss representation of this Cassandra container's host and port.
231+
* @return A InetSocketAddress representation of this Cassandra container's host and port.
232232
*/
233233
public InetSocketAddress getContactPoint() {
234234
return new InetSocketAddress(getHost(), getMappedPort(CQL_PORT));

0 commit comments

Comments
 (0)