Fix a typo
[netconf.git] / netconf / netconf-netty-util / src / main / java / org / opendaylight / netconf / nettyutil / handler / ssh / client / AsyncSshHandlerWriter.java
index d13d45a238fcf2f618069ea3ea945bee72e1faef..01284e308a8e2b3636af9915b90e57cb02387da3 100644 (file)
@@ -94,7 +94,7 @@ public final class AsyncSshHandlerWriter implements AutoCloseable {
 
             asyncIn.writeBuffer(toBuffer(byteBufMsg)).addListener(future -> {
                 // synchronized block due to deadlock that happens on ssh window resize
-                // writes and pending writes would lock the underlyinch channel session
+                // writes and pending writes would lock the underlying channel session
                 // window resize write would try to write the message on an already locked channelSession,
                 // while the pending write was in progress from the write callback
                 synchronized (asyncInLock) {