diff --git a/SabreTools.Library/DatFiles/Json.cs b/SabreTools.Library/DatFiles/Json.cs
index 89d8822f..4f4a14d8 100644
--- a/SabreTools.Library/DatFiles/Json.cs
+++ b/SabreTools.Library/DatFiles/Json.cs
@@ -13,7 +13,7 @@ using Newtonsoft.Json.Linq;
namespace SabreTools.Library.DatFiles
{
///
- /// Represents parsing and writing of a JSON DAT
+ /// Represents parsing and writing of a reference JSON DAT
///
internal class Json : DatFile
{
@@ -27,7 +27,7 @@ namespace SabreTools.Library.DatFiles
}
///
- /// Parse a Logiqx XML DAT and return all found games and roms within
+ /// Parse a reference JSON DAT and return all found games and roms within
///
/// Name of the file to be parsed
/// Index ID for the DAT
@@ -362,7 +362,7 @@ namespace SabreTools.Library.DatFiles
}
///
- /// Write out DAT header using the supplied StreamWriter
+ /// Write out DAT header using the supplied JsonTextWriter
///
/// JsonTextWriter to output to
/// True if the data was written, false on error
@@ -392,7 +392,7 @@ namespace SabreTools.Library.DatFiles
}
///
- /// Write out Game start using the supplied StreamWriter
+ /// Write out Game start using the supplied JsonTextWriter
///
/// JsonTextWriter to output to
/// DatItem object to be output
@@ -427,7 +427,7 @@ namespace SabreTools.Library.DatFiles
}
///
- /// Write out Game end using the supplied StreamWriter
+ /// Write out Game end using the supplied JsonTextWriter
///
/// JsonTextWriter to output to
/// True if the data was written, false on error
@@ -453,7 +453,7 @@ namespace SabreTools.Library.DatFiles
}
///
- /// Write out DatItem using the supplied StreamWriter
+ /// Write out DatItem using the supplied JsonTextWriter
///
/// JsonTextWriter to output to
/// DatItem object to be output
@@ -497,7 +497,7 @@ namespace SabreTools.Library.DatFiles
}
///
- /// Write out DAT footer using the supplied StreamWriter
+ /// Write out DAT footer using the supplied JsonTextWriter
///
/// JsonTextWriter to output to
/// True if the data was written, false on error