From 3c7d80fa058b5938aa928760140a9a785128c7c1 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Mon, 24 Aug 2020 20:23:57 -0700 Subject: [PATCH] Minor doc updates --- SabreTools.Library/DatFiles/Json.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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