Skip to content

Commit 9e5d322

Browse files
committed
rename
1 parent e5d5f44 commit 9e5d322

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/Telnet.Server/TelnetServerHandler.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ protected override async void ChannelRead0(IChannelHandlerContext contex, string
3636
response = "Did you say '" + msg + "'?\r\n";
3737
}
3838

39-
ValueTask wait_close = contex.WriteAndFlushAsync(response);
39+
ValueTask waitClose = contex.WriteAndFlushAsync(response);
4040
if (close)
4141
{
42-
await wait_close;
42+
await waitClose;
4343
contex.CloseAsync();
4444
}
4545
}

0 commit comments

Comments
 (0)