diff --git a/SMBLibrary/NetBios/NetBiosUtils.cs b/SMBLibrary/NetBios/NetBiosUtils.cs
index 67fb9b1..1661222 100644
--- a/SMBLibrary/NetBios/NetBiosUtils.cs
+++ b/SMBLibrary/NetBios/NetBiosUtils.cs
@@ -60,7 +60,7 @@ namespace SMBLibrary.NetBios
return EncodeName(netBiosName, scopeID);
}
- /// NetBIOS name
+ /// NetBIOS name
/// dot-separated labels, formatted per DNS naming rules
public static byte[] EncodeName(string netBiosName, string scopeID)
{
@@ -75,7 +75,7 @@ namespace SMBLibrary.NetBios
// into two nibbles and then adding the value of 'A' (0x41).
// Thus, the '&' character (0x26) would be encoded as "CG".
// NetBIOS names are usually padded with spaces before being encoded.
- /// NetBIOS name
+ /// NetBIOS name
/// dot-separated labels, formatted per DNS naming rules
public static string FirstLevelEncoding(string netBiosName, string scopeID)
{
diff --git a/SMBLibrary/SMB2/Commands/SMB2Command.cs b/SMBLibrary/SMB2/Commands/SMB2Command.cs
index 0738cbf..479aa36 100644
--- a/SMBLibrary/SMB2/Commands/SMB2Command.cs
+++ b/SMBLibrary/SMB2/Commands/SMB2Command.cs
@@ -135,7 +135,7 @@ namespace SMBLibrary.SMB2
return GetCommandChainBytes(commands, null, SMB2Dialect.SMB2xx);
}
- ///
+ ///
/// Message will be signed using this key if (not null and) SMB2_FLAGS_SIGNED is set.
///
///
diff --git a/SMBLibrary/Server/Shares/SMBShareCollection.cs b/SMBLibrary/Server/Shares/SMBShareCollection.cs
index 4cd61a1..0321674 100644
--- a/SMBLibrary/Server/Shares/SMBShareCollection.cs
+++ b/SMBLibrary/Server/Shares/SMBShareCollection.cs
@@ -39,7 +39,7 @@ namespace SMBLibrary.Server
return result;
}
- /// e.g. \Shared
+ /// e.g. \Shared
public FileSystemShare GetShareFromName(string shareName)
{
int index = IndexOf(shareName, StringComparison.OrdinalIgnoreCase);