Skip to content

Commit f10975f

Browse files
committed
Replace "RFCs" with "RFC".
1 parent 8b2f118 commit f10975f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

PcapDotNet/src/PcapDotNet.Packets/Dhcp/DhcpFlags.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
namespace PcapDotNet.Packets.Dhcp
88
{
99
/// <summary>
10-
/// RFCs 2131.
10+
/// RFC 2131.
1111
/// <pre>
1212
/// 1 1 1 1 1 1
1313
/// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5
@@ -23,13 +23,13 @@ namespace PcapDotNet.Packets.Dhcp
2323
public enum DhcpFlags : ushort
2424
{
2525
/// <summary>
26-
/// RFCs 2131.
26+
/// RFC 2131.
2727
/// Response as Unicast.
2828
/// </summary>
2929
Unicast = 0 << 15,
3030

3131
/// <summary>
32-
/// RFCs 2131.
32+
/// RFC 2131.
3333
/// Response as Broadcast.
3434
/// </summary>
3535
Broadcast = 1 << 15

PcapDotNet/src/PcapDotNet.Packets/Dhcp/DhcpMessageType.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
namespace PcapDotNet.Packets.Dhcp
88
{
99
/// <summary>
10-
/// RFCs 2131.
10+
/// RFC 2131.
1111
/// </summary>
1212
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1008:EnumsShouldHaveZeroValue")]
1313
public enum DhcpMessageOPCode : byte

0 commit comments

Comments
 (0)