diff --git a/SabreTools.Helper/Tools/Style.cs b/SabreTools.Helper/Tools/Style.cs
index f0ed351a..62f6998c 100644
--- a/SabreTools.Helper/Tools/Style.cs
+++ b/SabreTools.Helper/Tools/Style.cs
@@ -405,6 +405,7 @@ namespace SabreTools.Helper.Tools
///
/// Path to get directory name out of
/// Directory name from path
+ ///
public static string GetDirectoryName(string s)
{
if (s == null)
@@ -431,6 +432,7 @@ namespace SabreTools.Helper.Tools
///
/// Path to get file name out of
/// File name from path
+ ///
public static string GetFileName(string s)
{
if (s == null)
@@ -457,6 +459,7 @@ namespace SabreTools.Helper.Tools
///
/// Path to get file name out of
/// File name without extension from path
+ ///
public static string GetFileNameWithoutExtension(string s)
{
s = GetFileName(s);