Instance typo fix

This commit is contained in:
valentinbreiz 2021-01-20 22:47:31 +01:00
parent 325366fc84
commit aa728c4835
31 changed files with 84 additions and 84 deletions

View file

@ -41,7 +41,7 @@ namespace Cosmos.Core
}
/// <summary>
/// Init <see cref="Global"/> inctanse.
/// Init <see cref="Global"/> instance.
/// </summary>
static public void Init()
{

View file

@ -17,7 +17,7 @@ namespace Cosmos.HAL.BlockDevice
private readonly UInt64 mStartingSector;
/// <summary>
/// Create new inctanse of the <see cref="Partition"/> class.
/// Create new instance of the <see cref="Partition"/> class.
/// </summary>
/// <param name="aHost">A hosting device.</param>
/// <param name="aStartingSector">A starting sector.</param>

View file

@ -475,7 +475,7 @@ namespace Cosmos.HAL.Drivers.PCI.Video
private uint capabilities;
/// <summary>
/// Create new inctanse of the <see cref="VMWareSVGAII"/> class.
/// Create new instance of the <see cref="VMWareSVGAII"/> class.
/// </summary>
public VMWareSVGAII()
{

View file

@ -22,7 +22,7 @@ namespace Cosmos.HAL
// TODO: continue adding exceptions to the list, as HAL and Core would be documented.
/// <summary>
/// Init <see cref="Global"/> inctanse.
/// Init <see cref="Global"/> instance.
/// </summary>
/// <param name="textScreen">Text screen.</param>
/// <exception cref="System.IO.IOException">Thrown on IO error.</exception>

View file

@ -23,7 +23,7 @@ namespace Cosmos.HAL
protected readonly MemoryBlock08 mRAM;
/// <summary>
/// Creat new inctanse of the <see cref="TextScreen"/> class.
/// Creat new instance of the <see cref="TextScreen"/> class.
/// </summary>
public TextScreen()
{

View file

@ -18,7 +18,7 @@ namespace Cosmos.System
public static class Global
{
/// <summary>
/// Create new inctanse of the <see cref="Global"/> class.
/// Create new instance of the <see cref="Global"/> class.
/// </summary>
static Global()
{

View file

@ -145,7 +145,7 @@ namespace Cosmos.System.Graphics
}
/// <summary>
/// Create new inctanse of the <see cref="Bitmap"/> class, with a specified image data byte array.
/// Create new instance of the <see cref="Bitmap"/> class, with a specified image data byte array.
/// </summary>
/// <param name="imageData">byte array.</param>
/// <exception cref="ArgumentNullException">Thrown if imageData is null / memory error.</exception>
@ -168,7 +168,7 @@ namespace Cosmos.System.Graphics
}
/// <summary>
/// Create new inctanse of the <see cref="Bitmap"/> class, with a specified image data byte array.
/// Create new instance of the <see cref="Bitmap"/> class, with a specified image data byte array.
/// </summary>
/// <param name="imageData">byte array.</param>
/// <param name="colorOrder">Order of colors in each pixel.</param>

View file

@ -92,14 +92,14 @@ namespace Cosmos.System.Network.ARP
}
/// <summary>
/// Create new inctanse of the <see cref="ARPPacket"/> class.
/// Create new instance of the <see cref="ARPPacket"/> class.
/// </summary>
internal ARPPacket()
: base()
{ }
/// <summary>
/// Create new inctanse of the <see cref="ARPPacket"/> class.
/// Create new instance of the <see cref="ARPPacket"/> class.
/// </summary>
/// <param name="rawData">Raw data.</param>
public ARPPacket(byte[] rawData)
@ -120,7 +120,7 @@ namespace Cosmos.System.Network.ARP
}
/// <summary>
/// Create new inctanse of the <see cref="ARPPacket"/> class.
/// Create new instance of the <see cref="ARPPacket"/> class.
/// </summary>
/// <param name="dest">Destination MAC address.</param>
/// <param name="src">Source MAC address.</param>

View file

@ -37,14 +37,14 @@ namespace Cosmos.System.Network.ARP
protected Address mTargetIP;
/// <summary>
/// Create new inctanse of the <see cref="ARPRequest_Ethernet"/> class.
/// Create new instance of the <see cref="ARPRequest_Ethernet"/> class.
/// </summary>
internal ARPPacket_Ethernet()
: base()
{ }
/// <summary>
/// Create new inctanse of the <see cref="ARPRequest_Ethernet"/> class.
/// Create new instance of the <see cref="ARPRequest_Ethernet"/> class.
/// </summary>
/// <param name="rawData">Raw data.</param>
internal ARPPacket_Ethernet(byte[] rawData)
@ -69,7 +69,7 @@ namespace Cosmos.System.Network.ARP
}
/// <summary>
/// Create new inctanse of the <see cref="ARPRequest_Ethernet"/> class.
/// Create new instance of the <see cref="ARPRequest_Ethernet"/> class.
/// </summary>
/// <param name="operation">Operation.</param>
/// <param name="senderMAC">Source MAC address.</param>
@ -146,14 +146,14 @@ namespace Cosmos.System.Network.ARP
internal class ARPReply_Ethernet : ARPPacket_Ethernet
{
/// <summary>
/// Create new inctanse of the <see cref="ARPReply_Ethernet"/> class.
/// Create new instance of the <see cref="ARPReply_Ethernet"/> class.
/// </summary>
internal ARPReply_Ethernet()
: base()
{ }
/// <summary>
/// Create new inctanse of the <see cref="ARPReply_Ethernet"/> class.
/// Create new instance of the <see cref="ARPReply_Ethernet"/> class.
/// </summary>
/// <param name="rawData">Raw data.</param>
internal ARPReply_Ethernet(byte[] rawData)
@ -161,7 +161,7 @@ namespace Cosmos.System.Network.ARP
{ }
/// <summary>
/// Create new inctanse of the <see cref="ARPReply_Ethernet"/> class.
/// Create new instance of the <see cref="ARPReply_Ethernet"/> class.
/// </summary>
/// <param name="ourMAC">Source MAC address.</param>
/// <param name="ourIP">Source IP address.</param>
@ -188,14 +188,14 @@ namespace Cosmos.System.Network.ARP
internal class ARPRequest_Ethernet : ARPPacket_Ethernet
{
/// <summary>
/// Create new inctanse of the <see cref="ARPRequest_Ethernet"/> class.
/// Create new instance of the <see cref="ARPRequest_Ethernet"/> class.
/// </summary>
internal ARPRequest_Ethernet()
: base()
{ }
/// <summary>
/// Create new inctanse of the <see cref="ARPRequest_Ethernet"/> class.
/// Create new instance of the <see cref="ARPRequest_Ethernet"/> class.
/// </summary>
/// <param name="rawData">Raw data.</param>
internal ARPRequest_Ethernet(byte[] rawData)
@ -208,7 +208,7 @@ namespace Cosmos.System.Network.ARP
}
/// <summary>
/// Create new inctanse of the <see cref="ARPRequest_Ethernet"/> class.
/// Create new instance of the <see cref="ARPRequest_Ethernet"/> class.
/// </summary>
/// <param name="ourMAC">Source MAC address.</param>
/// <param name="ourIP">Source IP address.</param>

View file

@ -26,14 +26,14 @@ namespace Cosmos.System.Network
protected MACAddress destMAC;
/// <summary>
/// Create new inctanse of the <see cref="EthernetPacket"/> class.
/// Create new instance of the <see cref="EthernetPacket"/> class.
/// </summary>
protected EthernetPacket()
{
}
/// <summary>
/// Create new inctanse of the <see cref="EthernetPacket"/> class, with specified raw data.
/// Create new instance of the <see cref="EthernetPacket"/> class, with specified raw data.
/// </summary>
/// <param name="rawData">Raw data.</param>
protected EthernetPacket(byte[] rawData)
@ -53,7 +53,7 @@ namespace Cosmos.System.Network
}
/// <summary>
/// Create new inctanse of the <see cref="EthernetPacket"/> class, with specified type and size.
/// Create new instance of the <see cref="EthernetPacket"/> class, with specified type and size.
/// </summary>
/// <param name="type">Type.</param>
/// <param name="packet_size">Size.</param>
@ -63,7 +63,7 @@ namespace Cosmos.System.Network
}
/// <summary>
/// Create new inctanse of the <see cref="EthernetPacket"/> class, with specified dsetination, source, type and size.
/// Create new instance of the <see cref="EthernetPacket"/> class, with specified dsetination, source, type and size.
/// </summary>
/// <param name="dest">Destination.</param>
/// <param name="src">Source.</param>

View file

@ -58,7 +58,7 @@ namespace Cosmos.System.Network.IPv4
}
/// <summary>
/// Create new inctanse of the <see cref="ICMPClient"/> class.
/// Create new instance of the <see cref="ICMPClient"/> class.
/// </summary>
public ICMPClient()
{

View file

@ -10,13 +10,13 @@ namespace Cosmos.System.Network.IPv4.UDP.DHCP
internal class DHCPAck : DHCPPacket
{
/// <summary>
/// Create new inctanse of the <see cref="DHCPAck"/> class.
/// Create new instance of the <see cref="DHCPAck"/> class.
/// </summary>
internal DHCPAck() : base()
{ }
/// <summary>
/// Create new inctanse of the <see cref="DHCPAck"/> class.
/// Create new instance of the <see cref="DHCPAck"/> class.
/// </summary>
/// <param name="rawData">Raw data.</param>
internal DHCPAck(byte[] rawData) : base(rawData)

View file

@ -43,7 +43,7 @@ namespace Cosmos.System.Network.IPv4.UDP.DHCP
}
/// <summary>
/// Create new inctanse of the <see cref="UdpClient"/> class.
/// Create new instance of the <see cref="UdpClient"/> class.
/// </summary>
/// <exception cref="ArgumentOutOfRangeException">Thrown on fatal error (contact support).</exception>
/// <exception cref="ArgumentException">Thrown if UdpClient with localPort 0 exists.</exception>

View file

@ -10,20 +10,20 @@ namespace Cosmos.System.Network.IPv4.UDP.DHCP
internal class DHCPDiscover : DHCPPacket
{
/// <summary>
/// Create new inctanse of the <see cref="DHCPDiscover"/> class.
/// Create new instance of the <see cref="DHCPDiscover"/> class.
/// </summary>
internal DHCPDiscover() : base()
{ }
/// <summary>
/// Create new inctanse of the <see cref="DHCPDiscover"/> class.
/// Create new instance of the <see cref="DHCPDiscover"/> class.
/// </summary>
/// <param name="rawData">Raw data.</param>
internal DHCPDiscover(byte[] rawData) : base(rawData)
{ }
/// <summary>
/// Create new inctanse of the <see cref="DHCPDiscover"/> class.
/// Create new instance of the <see cref="DHCPDiscover"/> class.
/// </summary>
/// <param name="mac_src">Source MAC Address.</param>
/// <exception cref="ArgumentException">Thrown if RawData is invalid or null.</exception>

View file

@ -61,13 +61,13 @@ namespace Cosmos.System.Network.IPv4.UDP.DHCP
}
/// <summary>
/// Create new inctanse of the <see cref="DHCPPacket"/> class.
/// Create new instance of the <see cref="DHCPPacket"/> class.
/// </summary>
internal DHCPPacket() : base()
{ }
/// <summary>
/// Create new inctanse of the <see cref="DHCPPacket"/> class.
/// Create new instance of the <see cref="DHCPPacket"/> class.
/// </summary>
/// <param name="rawData">Raw data.</param>
public DHCPPacket(byte[] rawData)
@ -75,7 +75,7 @@ namespace Cosmos.System.Network.IPv4.UDP.DHCP
{ }
/// <summary>
/// Create new inctanse of the <see cref="DHCPPacket"/> class.
/// Create new instance of the <see cref="DHCPPacket"/> class.
/// </summary>
/// <param name="mac_src">Source MAC Address.</param>
/// <param name="dhcpDataSize">DHCP Data size</param>
@ -84,7 +84,7 @@ namespace Cosmos.System.Network.IPv4.UDP.DHCP
{ }
/// <summary>
/// Create new inctanse of the <see cref="DHCPPacket"/> class.
/// Create new instance of the <see cref="DHCPPacket"/> class.
/// </summary>
/// <param name="client">Client IPv4 Address.</param>
/// <param name="server">Server IPv4 Address.</param>

View file

@ -11,20 +11,20 @@ namespace Cosmos.System.Network.IPv4.UDP.DHCP
internal class DHCPRelease : DHCPPacket
{
/// <summary>
/// Create new inctanse of the <see cref="DHCPRelease"/> class.
/// Create new instance of the <see cref="DHCPRelease"/> class.
/// </summary>
internal DHCPRelease() : base()
{ }
/// <summary>
/// Create new inctanse of the <see cref="DHCPRelease"/> class.
/// Create new instance of the <see cref="DHCPRelease"/> class.
/// </summary>
/// <param name="rawData">Raw data.</param>
internal DHCPRelease(byte[] rawData) : base(rawData)
{ }
/// <summary>
/// Create new inctanse of the <see cref="DHCPRelease"/> class.
/// Create new instance of the <see cref="DHCPRelease"/> class.
/// </summary>
/// <param name="client">Client IPv4 Address.</param>
/// <param name="server">DHCP Server IPv4 Address.</param>

View file

@ -14,20 +14,20 @@ namespace Cosmos.System.Network.IPv4.UDP.DHCP
{
/// <summary>
/// Create new inctanse of the <see cref="DHCPRequest"/> class.
/// Create new instance of the <see cref="DHCPRequest"/> class.
/// </summary>
internal DHCPRequest() : base()
{ }
/// <summary>
/// Create new inctanse of the <see cref="DHCPRequest"/> class.
/// Create new instance of the <see cref="DHCPRequest"/> class.
/// </summary>
/// <param name="rawData">Raw data.</param>
internal DHCPRequest(byte[] rawData) : base(rawData)
{ }
/// <summary>
/// Create new inctanse of the <see cref="DHCPRequest"/> class.
/// Create new instance of the <see cref="DHCPRequest"/> class.
/// </summary>
/// <param name="mac_src">Source MAC Address.</param>
/// <param name="RequestedAddress">Requested Address.</param>

View file

@ -69,14 +69,14 @@ namespace Cosmos.System.Network.IPv4.UDP.DNS
}
/// <summary>
/// Create new inctanse of the <see cref="DNSPacket"/> class.
/// Create new instance of the <see cref="DNSPacket"/> class.
/// </summary>
internal DNSPacket()
: base()
{ }
/// <summary>
/// Create new inctanse of the <see cref="DNSPacket"/> class.
/// Create new instance of the <see cref="DNSPacket"/> class.
/// </summary>
/// <param name="rawData">Raw data.</param>
public DNSPacket(byte[] rawData)
@ -84,7 +84,7 @@ namespace Cosmos.System.Network.IPv4.UDP.DNS
{ }
/// <summary>
/// Create new inctanse of the <see cref="UDPPacket"/> class.
/// Create new instance of the <see cref="UDPPacket"/> class.
/// </summary>
/// <param name="source">Source address.</param>
/// <param name="dest">Destination address.</param>
@ -214,14 +214,14 @@ namespace Cosmos.System.Network.IPv4.UDP.DNS
public class DNSPacketAsk : DNSPacket
{
/// <summary>
/// Create new inctanse of the <see cref="DNSPacketAsk"/> class.
/// Create new instance of the <see cref="DNSPacketAsk"/> class.
/// </summary>
internal DNSPacketAsk()
: base()
{ }
/// <summary>
/// Create new inctanse of the <see cref="DNSPacketAsk"/> class.
/// Create new instance of the <see cref="DNSPacketAsk"/> class.
/// </summary>
/// <param name="rawData">Raw data.</param>
public DNSPacketAsk(byte[] rawData)
@ -229,7 +229,7 @@ namespace Cosmos.System.Network.IPv4.UDP.DNS
{ }
/// <summary>
/// Create new inctanse of the <see cref="UDPPacket"/> class.
/// Create new instance of the <see cref="UDPPacket"/> class.
/// </summary>
/// <param name="source">Source address.</param>
/// <param name="dest">DNS Server address.</param>
@ -281,14 +281,14 @@ namespace Cosmos.System.Network.IPv4.UDP.DNS
public class DNSPacketAnswer : DNSPacket
{
/// <summary>
/// Create new inctanse of the <see cref="DNSPacketAnswer"/> class.
/// Create new instance of the <see cref="DNSPacketAnswer"/> class.
/// </summary>
internal DNSPacketAnswer()
: base()
{ }
/// <summary>
/// Create new inctanse of the <see cref="DNSPacketAnswer"/> class.
/// Create new instance of the <see cref="DNSPacketAnswer"/> class.
/// </summary>
/// <param name="rawData">Raw data.</param>
public DNSPacketAnswer(byte[] rawData)

View file

@ -31,7 +31,7 @@ namespace Cosmos.System.Network.IPv4
internal byte[] address = new byte[4];
/// <summary>
/// Create new inctanse of the <see cref="Address"/> class, with specified IP address.
/// Create new instance of the <see cref="Address"/> class, with specified IP address.
/// </summary>
/// <param name="aFirst">First block of the address.</param>
/// <param name="aSecond">Second block of the address.</param>
@ -46,7 +46,7 @@ namespace Cosmos.System.Network.IPv4
}
/// <summary>
/// Create new inctanse of the <see cref="Address"/> class, with specified buffer and offset.
/// Create new instance of the <see cref="Address"/> class, with specified buffer and offset.
/// </summary>
/// <param name="buffer">Buffer.</param>
/// <param name="offset">Offset.</param>

View file

@ -24,7 +24,7 @@ namespace Cosmos.System.Network.IPv4
public UInt16 port;
/// <summary>
/// Create new inctanse of the <see cref="EndPoint"/> class.
/// Create new instance of the <see cref="EndPoint"/> class.
/// </summary>
/// <param name="addr">Adress.</param>
/// <param name="port">Port.</param>

View file

@ -31,7 +31,7 @@ namespace Cosmos.System.Network.IPv4
/// </summary>
/// <summary>
/// Create new inctanse of the <see cref="ICMPPacket"/> class.
/// Create new instance of the <see cref="ICMPPacket"/> class.
/// </summary>
/// <param name="packetData">Packet data.</param>
/// <exception cref="ArgumentException">Thrown if packetData is invalid.</exception>
@ -60,14 +60,14 @@ namespace Cosmos.System.Network.IPv4
}
/// <summary>
/// Create new inctanse of the <see cref="ICMPPacket"/> class.
/// Create new instance of the <see cref="ICMPPacket"/> class.
/// </summary>
internal ICMPPacket()
: base()
{ }
/// <summary>
/// Create new inctanse of the <see cref="ICMPPacket"/> class.
/// Create new instance of the <see cref="ICMPPacket"/> class.
/// </summary>
/// <param name="rawData">Raw data.</param>
internal ICMPPacket(byte[] rawData)
@ -89,7 +89,7 @@ namespace Cosmos.System.Network.IPv4
}
/// <summary>
/// Create new inctanse of the <see cref="ICMPPacket"/> class.
/// Create new instance of the <see cref="ICMPPacket"/> class.
/// </summary>
/// <param name="source">Source address.</param>
/// <param name="dest">Destination address.</param>
@ -192,14 +192,14 @@ namespace Cosmos.System.Network.IPv4
protected ushort icmpSequence;
/// <summary>
/// Create new inctanse of the <see cref="ICMPEchoRequest"/> class.
/// Create new instance of the <see cref="ICMPEchoRequest"/> class.
/// </summary>
internal ICMPEchoRequest()
: base()
{ }
/// <summary>
/// Create new inctanse of the <see cref="ICMPEchoRequest"/> class.
/// Create new instance of the <see cref="ICMPEchoRequest"/> class.
/// </summary>
/// <param name="rawData">Raw data.</param>
internal ICMPEchoRequest(byte[] rawData)
@ -258,14 +258,14 @@ namespace Cosmos.System.Network.IPv4
protected ushort icmpSequence;
/// <summary>
/// Create new inctanse of the <see cref="ICMPEchoReply"/> class.
/// Create new instance of the <see cref="ICMPEchoReply"/> class.
/// </summary>
internal ICMPEchoReply()
: base()
{ }
/// <summary>
/// Create new inctanse of the <see cref="ICMPEchoReply"/> class.
/// Create new instance of the <see cref="ICMPEchoReply"/> class.
/// </summary>
/// <param name="rawData">Raw data.</param>
internal ICMPEchoReply(byte[] rawData)
@ -286,7 +286,7 @@ namespace Cosmos.System.Network.IPv4
}
/// <summary>
/// Create new inctanse of the <see cref="ICMPEchoReply"/> class.
/// Create new instance of the <see cref="ICMPEchoReply"/> class.
/// </summary>
/// <param name="request">ICMP echo request.</param>
/// <exception cref="ArgumentException">Thrown if RawData is invalid or null.</exception>

View file

@ -70,14 +70,14 @@ namespace Cosmos.System.Network.IPv4
public static ushort NextIPFragmentID => sNextFragmentID++;
/// <summary>
/// Create new inctanse of the <see cref="IPPacket"/> class.
/// Create new instance of the <see cref="IPPacket"/> class.
/// </summary>
internal IPPacket()
{
}
/// <summary>
/// Create new inctanse of the <see cref="IPPacket"/> class.
/// Create new instance of the <see cref="IPPacket"/> class.
/// </summary>
/// <param name="rawData">Raw data.</param>
public IPPacket(byte[] rawData)
@ -108,7 +108,7 @@ namespace Cosmos.System.Network.IPv4
}
/// <summary>
/// Create new inctanse of the <see cref="IPPacket"/> class.
/// Create new instance of the <see cref="IPPacket"/> class.
/// </summary>
/// <param name="dataLength">Data length.</param>
/// <param name="protocol">Protocol.</param>
@ -120,7 +120,7 @@ namespace Cosmos.System.Network.IPv4
{ }
/// <summary>
/// Create new inctanse of the <see cref="IPPacket"/> class.
/// Create new instance of the <see cref="IPPacket"/> class.
/// </summary>
/// <param name="dataLength">Data length.</param>
/// <param name="protocol">Protocol.</param>
@ -133,7 +133,7 @@ namespace Cosmos.System.Network.IPv4
{ }
/// <summary>
/// Create new inctanse of the <see cref="IPPacket"/> class.
/// Create new instance of the <see cref="IPPacket"/> class.
/// </summary>
/// <param name="srcMAC">Source MAC address.</param>
/// <param name="destMAC">Destination MAC address.</param>

View file

@ -75,7 +75,7 @@ namespace Cosmos.System.Network.IPv4
public Address nextHop;
/// <summary>
/// Create new inctanse of the <see cref="BufferEntry"/> class.
/// Create new instance of the <see cref="BufferEntry"/> class.
/// </summary>
/// <param name="nic">Network device.</param>
/// <param name="packet">IP packet.</param>

View file

@ -54,14 +54,14 @@ namespace Cosmos.System.Network.IPv4.UDP
}
/// <summary>
/// Create new inctanse of the <see cref="UDPPacket"/> class.
/// Create new instance of the <see cref="UDPPacket"/> class.
/// </summary>
internal UDPPacket()
{
}
/// <summary>
/// Create new inctanse of the <see cref="UDPPacket"/> class.
/// Create new instance of the <see cref="UDPPacket"/> class.
/// </summary>
/// <param name="rawData">Raw data.</param>
public UDPPacket(byte[] rawData)
@ -84,7 +84,7 @@ namespace Cosmos.System.Network.IPv4.UDP
}
/// <summary>
/// Create new inctanse of the <see cref="UDPPacket"/> class.
/// Create new instance of the <see cref="UDPPacket"/> class.
/// </summary>
/// <param name="source">Source address.</param>
/// <param name="dest">Destination address.</param>

View file

@ -65,7 +65,7 @@ namespace Cosmos.System.Network.IPv4.UDP
}
/// <summary>
/// Create new inctanse of the <see cref="UdpClient"/> class.
/// Create new instance of the <see cref="UdpClient"/> class.
/// </summary>
/// <exception cref="ArgumentOutOfRangeException">Thrown on fatal error (contact support).</exception>
/// <exception cref="ArgumentException">Thrown if UdpClient with localPort 0 exists.</exception>
@ -74,7 +74,7 @@ namespace Cosmos.System.Network.IPv4.UDP
{ }
/// <summary>
/// Create new inctanse of the <see cref="UdpClient"/> class.
/// Create new instance of the <see cref="UdpClient"/> class.
/// </summary>
/// <param name="localPort">Local port.</param>
/// <exception cref="ArgumentOutOfRangeException">Thrown on fatal error (contact support).</exception>
@ -91,7 +91,7 @@ namespace Cosmos.System.Network.IPv4.UDP
}
/// <summary>
/// Create new inctanse of the <see cref="UdpClient"/> class.
/// Create new instance of the <see cref="UdpClient"/> class.
/// </summary>
/// <param name="dest">Destination address.</param>
/// <param name="destPort">Destination port.</param>

View file

@ -24,7 +24,7 @@ namespace Cosmos.System.Network
public static class NetworkStack
{
/// <summary>
/// Debugger inctanse of the "System" ring, with the "NetworkStack" tag.
/// Debugger instance of the "System" ring, with the "NetworkStack" tag.
/// </summary>
public static Debugger debugger = new Debugger("System", "NetworkStack");

View file

@ -9,12 +9,12 @@ namespace Cosmos.System.ExtendedASCII
internal class CP437Enconding : SingleByteEncoding
{
/// <summary>
/// Debugger inctanse of the "System" ring with the "CP437 Encoding" tag.
/// Debugger instance of the "System" ring with the "CP437 Encoding" tag.
/// </summary>
private static Debugger myDebugger = new Debugger("System", "CP437 Encoding");
/// <summary>
/// Create new inctanse of the <see cref="CP437Enconding"/> class.
/// Create new instance of the <see cref="CP437Enconding"/> class.
/// </summary>
internal CP437Enconding()
{

View file

@ -9,12 +9,12 @@ namespace Cosmos.System.ExtendedASCII
internal class CP858Enconding : SingleByteEncoding
{
/// <summary>
/// Debugger inctanse of the "System" ring with the "CP858 Encoding" tag.
/// Debugger instance of the "System" ring with the "CP858 Encoding" tag.
/// </summary>
private static Debugger myDebugger = new Debugger("System", "CP858 Encoding");
/// <summary>
/// Create new inctanse of the <see cref="CP858Enconding"/> class.
/// Create new instance of the <see cref="CP858Enconding"/> class.
/// </summary>
internal CP858Enconding()
{

View file

@ -14,12 +14,12 @@ namespace Cosmos.System.ExtendedASCII
/// </summary>
private static readonly EncodingProvider s_singleton = new CosmosEncodingProvider();
/// <summary>
/// Debugger inctanse of the "System" ring with the "CosmosEncodingProvider" tag.
/// Debugger instance of the "System" ring with the "CosmosEncodingProvider" tag.
/// </summary>
private static Debugger myDebugger = new Debugger("System", "CosmosEncodingProvider");
/// <summary>
/// Create new inctanse of the <see cref="CosmosEncodingProvider"/> class.
/// Create new instance of the <see cref="CosmosEncodingProvider"/> class.
/// </summary>
internal CosmosEncodingProvider() { }

View file

@ -14,12 +14,12 @@ namespace Cosmos.System.ExtendedASCII
internal static class EncodingTable
{
/// <summary>
/// Debugger inctanse of the "System" ring with the "EncodingTable" tag.
/// Debugger instance of the "System" ring with the "EncodingTable" tag.
/// </summary>
private static Debugger mDebugger = new Debugger("System", "EncodingTable");
/// <summary>
/// Create new inctanse of the <see cref="EncodingTable"/> class.
/// Create new instance of the <see cref="EncodingTable"/> class.
/// </summary>
static EncodingTable()
{
@ -44,7 +44,7 @@ namespace Cosmos.System.ExtendedASCII
public Encoding encoding;
/// <summary>
/// Create new inctanse of the <see cref="values"/> struct.
/// Create new instance of the <see cref="values"/> struct.
/// </summary>
/// <param name="desc">Description.</param>
/// <param name="encoding">Encoding.</param>

View file

@ -11,7 +11,7 @@ namespace Cosmos.System.ExtendedASCII
internal class SingleByteEncoding : Encoding
{
/// <summary>
/// Debugger inctanse of the "System" ring with the "SingleByteEncoding" tag.
/// Debugger instance of the "System" ring with the "SingleByteEncoding" tag.
/// </summary>
private static Debugger mDebugger = new Debugger("System", "SingleByteEncoding");