Fix a typo 91/102691/1
authorRobert Varga <robert.varga@pantheon.tech>
Fri, 14 Oct 2022 00:32:01 +0000 (02:32 +0200)
committerRobert Varga <robert.varga@pantheon.tech>
Fri, 14 Oct 2022 00:32:01 +0000 (02:32 +0200)
'underlyinch' vs 'underlying'.

Change-Id: Icc224eadb60cb6029caafdc9e9bb603638e57bce
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
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) {