Skip to content

Commit 07f716c

Browse files
committed
CSHARP-1994: Fix build error due to malformed comment.
1 parent ec6e02f commit 07f716c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/MongoDB.Driver.Core/Core/Connections/KeepAliveValues.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ internal struct KeepAliveValues
2626
public byte[] ToBytes()
2727
{
2828
// set the tcp_keepalive struct at the following page for documentation of the buffer layout
29-
/// https://msdn.microsoft.com/en-us/library/windows/desktop/dd877220(v=vs.85).aspx
29+
// https://msdn.microsoft.com/en-us/library/windows/desktop/dd877220(v=vs.85).aspx
3030
var bytes = new byte[24];
3131
Array.Copy(BitConverter.GetBytes(OnOff), 0, bytes, 0, 8);
3232
Array.Copy(BitConverter.GetBytes(KeepAliveTime), 0, bytes, 8, 8);

0 commit comments

Comments
 (0)