diff --git a/build.gradle b/build.gradle
index a23daffc..e8be125e 100644
--- a/build.gradle
+++ b/build.gradle
@@ -10,7 +10,7 @@ repositories {
}
group = 'org.java-websocket'
-version = '1.5.2-SNAPSHOT'
+version = '1.5.3-SNAPSHOT'
sourceCompatibility = 1.7
targetCompatibility = 1.7
diff --git a/pom.xml b/pom.xml
index af362d90..52f26cd2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -5,7 +5,7 @@
org.java-websocket
Java-WebSocket
jar
- 1.5.2-SNAPSHOT
+ 1.5.3-SNAPSHOT
Java-WebSocket
A barebones WebSocket client and server implementation written 100% in Java
https://github.com/TooTallNate/Java-WebSocket
@@ -226,6 +226,7 @@
ossrh
true
+ https://oss.sonatype.org/
diff --git a/src/main/java/org/java_websocket/SSLSocketChannel.java b/src/main/java/org/java_websocket/SSLSocketChannel.java
index 0c1f0c41..b4024505 100644
--- a/src/main/java/org/java_websocket/SSLSocketChannel.java
+++ b/src/main/java/org/java_websocket/SSLSocketChannel.java
@@ -417,7 +417,7 @@ private ByteBuffer enlargeApplicationBuffer(ByteBuffer buffer) {
}
/**
- * Compares sessionProposedCapacity with buffer's capacity. If buffer's capacity is
+ * Compares sessionProposedCapacity with buffer's capacity. If buffer's capacity is
* smaller, returns a buffer with the proposed capacity. If it's equal or larger, returns a buffer
* with capacity twice the size of the initial one.
*