Skip to content

Commit 80d68c0

Browse files
authored
Merge pull request #101 from nabels-coolblue/fix-typos-tcp-to-udp
Changes occurrences of TCP with UDP where appropriate
2 parents 7074f14 + 77b41fc commit 80d68c0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Serilog.Sinks.UDP/Sinks/Splunk/UdpSink.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@
2727
namespace Serilog.Sinks.Splunk
2828
{
2929
/// <summary>
30-
/// A sink that logs to Splunk over Udp
30+
/// A sink that logs to Splunk over UDP
3131
/// </summary>
3232
public class UdpSink : ILogEventSink, IDisposable
3333
{
3434
Socket _socket;
3535
readonly ITextFormatter _formatter;
3636

3737
/// <summary>
38-
/// Creates an instance of the Splunk TCP Sink.
38+
/// Creates an instance of the Splunk UDP Sink.
3939
/// </summary>
4040
/// <param name="connectionInfo">Connection info used for connecting against Splunk.</param>
4141
/// <param name="formatProvider">Optional format provider</param>
@@ -50,7 +50,7 @@ public UdpSink(
5050
}
5151

5252
/// <summary>
53-
/// Creates an instance of the Splunk TCP Sink.
53+
/// Creates an instance of the Splunk UDP Sink.
5454
/// </summary>
5555
/// <param name="connectionInfo">Connection info used for connecting against Splunk.</param>
5656
/// <param name="formatter">Custom formatter to use if you e.g. do not want to use the JsonFormatter.</param>

0 commit comments

Comments
 (0)