diff --git a/source/Cosmos.Core/Global.cs b/source/Cosmos.Core/Global.cs
index 770ee6242..8c5a64b24 100644
--- a/source/Cosmos.Core/Global.cs
+++ b/source/Cosmos.Core/Global.cs
@@ -41,7 +41,7 @@ namespace Cosmos.Core
}
///
- /// Init inctanse.
+ /// Init instance.
///
static public void Init()
{
diff --git a/source/Cosmos.HAL2/BlockDevice/Partition.cs b/source/Cosmos.HAL2/BlockDevice/Partition.cs
index 960a0696d..f5891e826 100644
--- a/source/Cosmos.HAL2/BlockDevice/Partition.cs
+++ b/source/Cosmos.HAL2/BlockDevice/Partition.cs
@@ -17,7 +17,7 @@ namespace Cosmos.HAL.BlockDevice
private readonly UInt64 mStartingSector;
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
/// A hosting device.
/// A starting sector.
diff --git a/source/Cosmos.HAL2/Drivers/PCI/Video/VMWareSVGAII.cs b/source/Cosmos.HAL2/Drivers/PCI/Video/VMWareSVGAII.cs
index 33397c355..9f0df3dd1 100644
--- a/source/Cosmos.HAL2/Drivers/PCI/Video/VMWareSVGAII.cs
+++ b/source/Cosmos.HAL2/Drivers/PCI/Video/VMWareSVGAII.cs
@@ -475,7 +475,7 @@ namespace Cosmos.HAL.Drivers.PCI.Video
private uint capabilities;
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
public VMWareSVGAII()
{
diff --git a/source/Cosmos.HAL2/Global.cs b/source/Cosmos.HAL2/Global.cs
index cc801aa9d..075ffb75c 100644
--- a/source/Cosmos.HAL2/Global.cs
+++ b/source/Cosmos.HAL2/Global.cs
@@ -22,7 +22,7 @@ namespace Cosmos.HAL
// TODO: continue adding exceptions to the list, as HAL and Core would be documented.
///
- /// Init inctanse.
+ /// Init instance.
///
/// Text screen.
/// Thrown on IO error.
diff --git a/source/Cosmos.HAL2/TextScreen.cs b/source/Cosmos.HAL2/TextScreen.cs
index a75ceded8..c4548e749 100644
--- a/source/Cosmos.HAL2/TextScreen.cs
+++ b/source/Cosmos.HAL2/TextScreen.cs
@@ -23,7 +23,7 @@ namespace Cosmos.HAL
protected readonly MemoryBlock08 mRAM;
///
- /// Creat new inctanse of the class.
+ /// Creat new instance of the class.
///
public TextScreen()
{
diff --git a/source/Cosmos.System2/Global.cs b/source/Cosmos.System2/Global.cs
index bc2320d30..62f487912 100644
--- a/source/Cosmos.System2/Global.cs
+++ b/source/Cosmos.System2/Global.cs
@@ -18,7 +18,7 @@ namespace Cosmos.System
public static class Global
{
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
static Global()
{
diff --git a/source/Cosmos.System2/Graphics/Bitmap.cs b/source/Cosmos.System2/Graphics/Bitmap.cs
index 94b06b719..49ddb9dbd 100644
--- a/source/Cosmos.System2/Graphics/Bitmap.cs
+++ b/source/Cosmos.System2/Graphics/Bitmap.cs
@@ -145,7 +145,7 @@ namespace Cosmos.System.Graphics
}
///
- /// Create new inctanse of the class, with a specified image data byte array.
+ /// Create new instance of the class, with a specified image data byte array.
///
/// byte array.
/// Thrown if imageData is null / memory error.
@@ -168,7 +168,7 @@ namespace Cosmos.System.Graphics
}
///
- /// Create new inctanse of the class, with a specified image data byte array.
+ /// Create new instance of the class, with a specified image data byte array.
///
/// byte array.
/// Order of colors in each pixel.
diff --git a/source/Cosmos.System2/Network/ARP/ARPPacket.cs b/source/Cosmos.System2/Network/ARP/ARPPacket.cs
index 574cbb591..6b45dda7b 100644
--- a/source/Cosmos.System2/Network/ARP/ARPPacket.cs
+++ b/source/Cosmos.System2/Network/ARP/ARPPacket.cs
@@ -92,14 +92,14 @@ namespace Cosmos.System.Network.ARP
}
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
internal ARPPacket()
: base()
{ }
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
/// Raw data.
public ARPPacket(byte[] rawData)
@@ -120,7 +120,7 @@ namespace Cosmos.System.Network.ARP
}
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
/// Destination MAC address.
/// Source MAC address.
diff --git a/source/Cosmos.System2/Network/ARP/ARPPacket_Ethernet.cs b/source/Cosmos.System2/Network/ARP/ARPPacket_Ethernet.cs
index 90a568353..0c5838281 100644
--- a/source/Cosmos.System2/Network/ARP/ARPPacket_Ethernet.cs
+++ b/source/Cosmos.System2/Network/ARP/ARPPacket_Ethernet.cs
@@ -37,14 +37,14 @@ namespace Cosmos.System.Network.ARP
protected Address mTargetIP;
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
internal ARPPacket_Ethernet()
: base()
{ }
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
/// Raw data.
internal ARPPacket_Ethernet(byte[] rawData)
@@ -69,7 +69,7 @@ namespace Cosmos.System.Network.ARP
}
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
/// Operation.
/// Source MAC address.
@@ -146,14 +146,14 @@ namespace Cosmos.System.Network.ARP
internal class ARPReply_Ethernet : ARPPacket_Ethernet
{
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
internal ARPReply_Ethernet()
: base()
{ }
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
/// Raw data.
internal ARPReply_Ethernet(byte[] rawData)
@@ -161,7 +161,7 @@ namespace Cosmos.System.Network.ARP
{ }
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
/// Source MAC address.
/// Source IP address.
@@ -188,14 +188,14 @@ namespace Cosmos.System.Network.ARP
internal class ARPRequest_Ethernet : ARPPacket_Ethernet
{
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
internal ARPRequest_Ethernet()
: base()
{ }
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
/// Raw data.
internal ARPRequest_Ethernet(byte[] rawData)
@@ -208,7 +208,7 @@ namespace Cosmos.System.Network.ARP
}
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
/// Source MAC address.
/// Source IP address.
diff --git a/source/Cosmos.System2/Network/EthernetPacket.cs b/source/Cosmos.System2/Network/EthernetPacket.cs
index 4ae2615b9..5016ea4f2 100644
--- a/source/Cosmos.System2/Network/EthernetPacket.cs
+++ b/source/Cosmos.System2/Network/EthernetPacket.cs
@@ -26,14 +26,14 @@ namespace Cosmos.System.Network
protected MACAddress destMAC;
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
protected EthernetPacket()
{
}
///
- /// Create new inctanse of the class, with specified raw data.
+ /// Create new instance of the class, with specified raw data.
///
/// Raw data.
protected EthernetPacket(byte[] rawData)
@@ -53,7 +53,7 @@ namespace Cosmos.System.Network
}
///
- /// Create new inctanse of the class, with specified type and size.
+ /// Create new instance of the class, with specified type and size.
///
/// Type.
/// Size.
@@ -63,7 +63,7 @@ namespace Cosmos.System.Network
}
///
- /// Create new inctanse of the class, with specified dsetination, source, type and size.
+ /// Create new instance of the class, with specified dsetination, source, type and size.
///
/// Destination.
/// Source.
diff --git a/source/Cosmos.System2/Network/IPV4/ICMPClient.cs b/source/Cosmos.System2/Network/IPV4/ICMPClient.cs
index cee7a74ea..c95f0dbd5 100644
--- a/source/Cosmos.System2/Network/IPV4/ICMPClient.cs
+++ b/source/Cosmos.System2/Network/IPV4/ICMPClient.cs
@@ -58,7 +58,7 @@ namespace Cosmos.System.Network.IPv4
}
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
public ICMPClient()
{
diff --git a/source/Cosmos.System2/Network/IPV4/UDP/DHCP/DHCPAck.cs b/source/Cosmos.System2/Network/IPV4/UDP/DHCP/DHCPAck.cs
index f7b374c85..dced26452 100644
--- a/source/Cosmos.System2/Network/IPV4/UDP/DHCP/DHCPAck.cs
+++ b/source/Cosmos.System2/Network/IPV4/UDP/DHCP/DHCPAck.cs
@@ -10,13 +10,13 @@ namespace Cosmos.System.Network.IPv4.UDP.DHCP
internal class DHCPAck : DHCPPacket
{
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
internal DHCPAck() : base()
{ }
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
/// Raw data.
internal DHCPAck(byte[] rawData) : base(rawData)
diff --git a/source/Cosmos.System2/Network/IPV4/UDP/DHCP/DHCPClient.cs b/source/Cosmos.System2/Network/IPV4/UDP/DHCP/DHCPClient.cs
index dbc9bb537..e1deba718 100644
--- a/source/Cosmos.System2/Network/IPV4/UDP/DHCP/DHCPClient.cs
+++ b/source/Cosmos.System2/Network/IPV4/UDP/DHCP/DHCPClient.cs
@@ -43,7 +43,7 @@ namespace Cosmos.System.Network.IPv4.UDP.DHCP
}
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
/// Thrown on fatal error (contact support).
/// Thrown if UdpClient with localPort 0 exists.
diff --git a/source/Cosmos.System2/Network/IPV4/UDP/DHCP/DHCPDiscover.cs b/source/Cosmos.System2/Network/IPV4/UDP/DHCP/DHCPDiscover.cs
index a9f0f440b..740910027 100644
--- a/source/Cosmos.System2/Network/IPV4/UDP/DHCP/DHCPDiscover.cs
+++ b/source/Cosmos.System2/Network/IPV4/UDP/DHCP/DHCPDiscover.cs
@@ -10,20 +10,20 @@ namespace Cosmos.System.Network.IPv4.UDP.DHCP
internal class DHCPDiscover : DHCPPacket
{
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
internal DHCPDiscover() : base()
{ }
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
/// Raw data.
internal DHCPDiscover(byte[] rawData) : base(rawData)
{ }
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
/// Source MAC Address.
/// Thrown if RawData is invalid or null.
diff --git a/source/Cosmos.System2/Network/IPV4/UDP/DHCP/DHCPPacket.cs b/source/Cosmos.System2/Network/IPV4/UDP/DHCP/DHCPPacket.cs
index 2e611a1c2..9ec9ae257 100644
--- a/source/Cosmos.System2/Network/IPV4/UDP/DHCP/DHCPPacket.cs
+++ b/source/Cosmos.System2/Network/IPV4/UDP/DHCP/DHCPPacket.cs
@@ -61,13 +61,13 @@ namespace Cosmos.System.Network.IPv4.UDP.DHCP
}
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
internal DHCPPacket() : base()
{ }
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
/// Raw data.
public DHCPPacket(byte[] rawData)
@@ -75,7 +75,7 @@ namespace Cosmos.System.Network.IPv4.UDP.DHCP
{ }
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
/// Source MAC Address.
/// DHCP Data size
@@ -84,7 +84,7 @@ namespace Cosmos.System.Network.IPv4.UDP.DHCP
{ }
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
/// Client IPv4 Address.
/// Server IPv4 Address.
diff --git a/source/Cosmos.System2/Network/IPV4/UDP/DHCP/DHCPRelease.cs b/source/Cosmos.System2/Network/IPV4/UDP/DHCP/DHCPRelease.cs
index e9d9ff92e..e35dd0a9e 100644
--- a/source/Cosmos.System2/Network/IPV4/UDP/DHCP/DHCPRelease.cs
+++ b/source/Cosmos.System2/Network/IPV4/UDP/DHCP/DHCPRelease.cs
@@ -11,20 +11,20 @@ namespace Cosmos.System.Network.IPv4.UDP.DHCP
internal class DHCPRelease : DHCPPacket
{
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
internal DHCPRelease() : base()
{ }
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
/// Raw data.
internal DHCPRelease(byte[] rawData) : base(rawData)
{ }
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
/// Client IPv4 Address.
/// DHCP Server IPv4 Address.
diff --git a/source/Cosmos.System2/Network/IPV4/UDP/DHCP/DHCPRequest.cs b/source/Cosmos.System2/Network/IPV4/UDP/DHCP/DHCPRequest.cs
index 7f0153385..9d39c4163 100644
--- a/source/Cosmos.System2/Network/IPV4/UDP/DHCP/DHCPRequest.cs
+++ b/source/Cosmos.System2/Network/IPV4/UDP/DHCP/DHCPRequest.cs
@@ -14,20 +14,20 @@ namespace Cosmos.System.Network.IPv4.UDP.DHCP
{
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
internal DHCPRequest() : base()
{ }
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
/// Raw data.
internal DHCPRequest(byte[] rawData) : base(rawData)
{ }
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
/// Source MAC Address.
/// Requested Address.
diff --git a/source/Cosmos.System2/Network/IPV4/UDP/DNS/DNSPacket.cs b/source/Cosmos.System2/Network/IPV4/UDP/DNS/DNSPacket.cs
index 6d8102931..2cff9a0af 100644
--- a/source/Cosmos.System2/Network/IPV4/UDP/DNS/DNSPacket.cs
+++ b/source/Cosmos.System2/Network/IPV4/UDP/DNS/DNSPacket.cs
@@ -69,14 +69,14 @@ namespace Cosmos.System.Network.IPv4.UDP.DNS
}
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
internal DNSPacket()
: base()
{ }
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
/// Raw data.
public DNSPacket(byte[] rawData)
@@ -84,7 +84,7 @@ namespace Cosmos.System.Network.IPv4.UDP.DNS
{ }
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
/// Source address.
/// Destination address.
@@ -214,14 +214,14 @@ namespace Cosmos.System.Network.IPv4.UDP.DNS
public class DNSPacketAsk : DNSPacket
{
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
internal DNSPacketAsk()
: base()
{ }
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
/// Raw data.
public DNSPacketAsk(byte[] rawData)
@@ -229,7 +229,7 @@ namespace Cosmos.System.Network.IPv4.UDP.DNS
{ }
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
/// Source address.
/// DNS Server address.
@@ -281,14 +281,14 @@ namespace Cosmos.System.Network.IPv4.UDP.DNS
public class DNSPacketAnswer : DNSPacket
{
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
internal DNSPacketAnswer()
: base()
{ }
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
/// Raw data.
public DNSPacketAnswer(byte[] rawData)
diff --git a/source/Cosmos.System2/Network/IPv4/Address.cs b/source/Cosmos.System2/Network/IPv4/Address.cs
index 9f31bb94d..545b61e51 100644
--- a/source/Cosmos.System2/Network/IPv4/Address.cs
+++ b/source/Cosmos.System2/Network/IPv4/Address.cs
@@ -31,7 +31,7 @@ namespace Cosmos.System.Network.IPv4
internal byte[] address = new byte[4];
///
- /// Create new inctanse of the class, with specified IP address.
+ /// Create new instance of the class, with specified IP address.
///
/// First block of the address.
/// Second block of the address.
@@ -46,7 +46,7 @@ namespace Cosmos.System.Network.IPv4
}
///
- /// Create new inctanse of the class, with specified buffer and offset.
+ /// Create new instance of the class, with specified buffer and offset.
///
/// Buffer.
/// Offset.
diff --git a/source/Cosmos.System2/Network/IPv4/EndPoint.cs b/source/Cosmos.System2/Network/IPv4/EndPoint.cs
index 3e68142d0..1c7056262 100644
--- a/source/Cosmos.System2/Network/IPv4/EndPoint.cs
+++ b/source/Cosmos.System2/Network/IPv4/EndPoint.cs
@@ -24,7 +24,7 @@ namespace Cosmos.System.Network.IPv4
public UInt16 port;
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
/// Adress.
/// Port.
diff --git a/source/Cosmos.System2/Network/IPv4/ICMPPacket.cs b/source/Cosmos.System2/Network/IPv4/ICMPPacket.cs
index c8094e35a..f237e2a38 100644
--- a/source/Cosmos.System2/Network/IPv4/ICMPPacket.cs
+++ b/source/Cosmos.System2/Network/IPv4/ICMPPacket.cs
@@ -31,7 +31,7 @@ namespace Cosmos.System.Network.IPv4
///
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
/// Packet data.
/// Thrown if packetData is invalid.
@@ -60,14 +60,14 @@ namespace Cosmos.System.Network.IPv4
}
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
internal ICMPPacket()
: base()
{ }
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
/// Raw data.
internal ICMPPacket(byte[] rawData)
@@ -89,7 +89,7 @@ namespace Cosmos.System.Network.IPv4
}
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
/// Source address.
/// Destination address.
@@ -192,14 +192,14 @@ namespace Cosmos.System.Network.IPv4
protected ushort icmpSequence;
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
internal ICMPEchoRequest()
: base()
{ }
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
/// Raw data.
internal ICMPEchoRequest(byte[] rawData)
@@ -258,14 +258,14 @@ namespace Cosmos.System.Network.IPv4
protected ushort icmpSequence;
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
internal ICMPEchoReply()
: base()
{ }
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
/// Raw data.
internal ICMPEchoReply(byte[] rawData)
@@ -286,7 +286,7 @@ namespace Cosmos.System.Network.IPv4
}
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
/// ICMP echo request.
/// Thrown if RawData is invalid or null.
diff --git a/source/Cosmos.System2/Network/IPv4/IPPacket.cs b/source/Cosmos.System2/Network/IPv4/IPPacket.cs
index f5d6350dc..c56895001 100644
--- a/source/Cosmos.System2/Network/IPv4/IPPacket.cs
+++ b/source/Cosmos.System2/Network/IPv4/IPPacket.cs
@@ -70,14 +70,14 @@ namespace Cosmos.System.Network.IPv4
public static ushort NextIPFragmentID => sNextFragmentID++;
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
internal IPPacket()
{
}
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
/// Raw data.
public IPPacket(byte[] rawData)
@@ -108,7 +108,7 @@ namespace Cosmos.System.Network.IPv4
}
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
/// Data length.
/// Protocol.
@@ -120,7 +120,7 @@ namespace Cosmos.System.Network.IPv4
{ }
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
/// Data length.
/// Protocol.
@@ -133,7 +133,7 @@ namespace Cosmos.System.Network.IPv4
{ }
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
/// Source MAC address.
/// Destination MAC address.
diff --git a/source/Cosmos.System2/Network/IPv4/OutgoingBuffer.cs b/source/Cosmos.System2/Network/IPv4/OutgoingBuffer.cs
index a94840131..a8404ef5f 100644
--- a/source/Cosmos.System2/Network/IPv4/OutgoingBuffer.cs
+++ b/source/Cosmos.System2/Network/IPv4/OutgoingBuffer.cs
@@ -75,7 +75,7 @@ namespace Cosmos.System.Network.IPv4
public Address nextHop;
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
/// Network device.
/// IP packet.
diff --git a/source/Cosmos.System2/Network/IPv4/UDP/UDPPacket.cs b/source/Cosmos.System2/Network/IPv4/UDP/UDPPacket.cs
index cca779d8e..64a3ba3fd 100644
--- a/source/Cosmos.System2/Network/IPv4/UDP/UDPPacket.cs
+++ b/source/Cosmos.System2/Network/IPv4/UDP/UDPPacket.cs
@@ -54,14 +54,14 @@ namespace Cosmos.System.Network.IPv4.UDP
}
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
internal UDPPacket()
{
}
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
/// Raw data.
public UDPPacket(byte[] rawData)
@@ -84,7 +84,7 @@ namespace Cosmos.System.Network.IPv4.UDP
}
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
/// Source address.
/// Destination address.
diff --git a/source/Cosmos.System2/Network/IPv4/UDP/UdpClient.cs b/source/Cosmos.System2/Network/IPv4/UDP/UdpClient.cs
index 4702cda71..6bd463d32 100644
--- a/source/Cosmos.System2/Network/IPv4/UDP/UdpClient.cs
+++ b/source/Cosmos.System2/Network/IPv4/UDP/UdpClient.cs
@@ -65,7 +65,7 @@ namespace Cosmos.System.Network.IPv4.UDP
}
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
/// Thrown on fatal error (contact support).
/// Thrown if UdpClient with localPort 0 exists.
@@ -74,7 +74,7 @@ namespace Cosmos.System.Network.IPv4.UDP
{ }
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
/// Local port.
/// Thrown on fatal error (contact support).
@@ -91,7 +91,7 @@ namespace Cosmos.System.Network.IPv4.UDP
}
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
/// Destination address.
/// Destination port.
diff --git a/source/Cosmos.System2/Network/NetworkStack.cs b/source/Cosmos.System2/Network/NetworkStack.cs
index 747914b79..f69acb00e 100644
--- a/source/Cosmos.System2/Network/NetworkStack.cs
+++ b/source/Cosmos.System2/Network/NetworkStack.cs
@@ -24,7 +24,7 @@ namespace Cosmos.System.Network
public static class NetworkStack
{
///
- /// Debugger inctanse of the "System" ring, with the "NetworkStack" tag.
+ /// Debugger instance of the "System" ring, with the "NetworkStack" tag.
///
public static Debugger debugger = new Debugger("System", "NetworkStack");
diff --git a/source/Cosmos.System2/Text/CP437Encoding.cs b/source/Cosmos.System2/Text/CP437Encoding.cs
index c4e0a285a..c0901bca9 100644
--- a/source/Cosmos.System2/Text/CP437Encoding.cs
+++ b/source/Cosmos.System2/Text/CP437Encoding.cs
@@ -9,12 +9,12 @@ namespace Cosmos.System.ExtendedASCII
internal class CP437Enconding : SingleByteEncoding
{
///
- /// Debugger inctanse of the "System" ring with the "CP437 Encoding" tag.
+ /// Debugger instance of the "System" ring with the "CP437 Encoding" tag.
///
private static Debugger myDebugger = new Debugger("System", "CP437 Encoding");
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
internal CP437Enconding()
{
diff --git a/source/Cosmos.System2/Text/CP858Encoding.cs b/source/Cosmos.System2/Text/CP858Encoding.cs
index df04b5db2..1e7c7ae6a 100644
--- a/source/Cosmos.System2/Text/CP858Encoding.cs
+++ b/source/Cosmos.System2/Text/CP858Encoding.cs
@@ -9,12 +9,12 @@ namespace Cosmos.System.ExtendedASCII
internal class CP858Enconding : SingleByteEncoding
{
///
- /// Debugger inctanse of the "System" ring with the "CP858 Encoding" tag.
+ /// Debugger instance of the "System" ring with the "CP858 Encoding" tag.
///
private static Debugger myDebugger = new Debugger("System", "CP858 Encoding");
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
internal CP858Enconding()
{
diff --git a/source/Cosmos.System2/Text/CosmosEncodingProvider.cs b/source/Cosmos.System2/Text/CosmosEncodingProvider.cs
index bea5d7b88..00be478c6 100644
--- a/source/Cosmos.System2/Text/CosmosEncodingProvider.cs
+++ b/source/Cosmos.System2/Text/CosmosEncodingProvider.cs
@@ -14,12 +14,12 @@ namespace Cosmos.System.ExtendedASCII
///
private static readonly EncodingProvider s_singleton = new CosmosEncodingProvider();
///
- /// Debugger inctanse of the "System" ring with the "CosmosEncodingProvider" tag.
+ /// Debugger instance of the "System" ring with the "CosmosEncodingProvider" tag.
///
private static Debugger myDebugger = new Debugger("System", "CosmosEncodingProvider");
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
internal CosmosEncodingProvider() { }
diff --git a/source/Cosmos.System2/Text/EncodingTable.cs b/source/Cosmos.System2/Text/EncodingTable.cs
index 3cde185b0..5530f4dc6 100644
--- a/source/Cosmos.System2/Text/EncodingTable.cs
+++ b/source/Cosmos.System2/Text/EncodingTable.cs
@@ -14,12 +14,12 @@ namespace Cosmos.System.ExtendedASCII
internal static class EncodingTable
{
///
- /// Debugger inctanse of the "System" ring with the "EncodingTable" tag.
+ /// Debugger instance of the "System" ring with the "EncodingTable" tag.
///
private static Debugger mDebugger = new Debugger("System", "EncodingTable");
///
- /// Create new inctanse of the class.
+ /// Create new instance of the class.
///
static EncodingTable()
{
@@ -44,7 +44,7 @@ namespace Cosmos.System.ExtendedASCII
public Encoding encoding;
///
- /// Create new inctanse of the struct.
+ /// Create new instance of the struct.
///
/// Description.
/// Encoding.
diff --git a/source/Cosmos.System2/Text/SingleByteEncoding.cs b/source/Cosmos.System2/Text/SingleByteEncoding.cs
index 3cfc5d577..0eba7d408 100644
--- a/source/Cosmos.System2/Text/SingleByteEncoding.cs
+++ b/source/Cosmos.System2/Text/SingleByteEncoding.cs
@@ -11,7 +11,7 @@ namespace Cosmos.System.ExtendedASCII
internal class SingleByteEncoding : Encoding
{
///
- /// Debugger inctanse of the "System" ring with the "SingleByteEncoding" tag.
+ /// Debugger instance of the "System" ring with the "SingleByteEncoding" tag.
///
private static Debugger mDebugger = new Debugger("System", "SingleByteEncoding");