diff --git a/SabreTools.Reports/Formats/SeparatedValue.cs b/SabreTools.Reports/Formats/SeparatedValue.cs
index 1ab46766..17c15387 100644
--- a/SabreTools.Reports/Formats/SeparatedValue.cs
+++ b/SabreTools.Reports/Formats/SeparatedValue.cs
@@ -15,7 +15,9 @@ namespace SabreTools.Reports.Formats
///
public abstract class SeparatedValue : BaseReport
{
- // Private instance variables specific to Hashfile DATs
+ ///
+ /// Represents the delimiter between fields
+ ///
protected char _delim;
///
diff --git a/SabreTools.Reports/Formats/Textfile.cs b/SabreTools.Reports/Formats/Textfile.cs
index 00278319..861e1473 100644
--- a/SabreTools.Reports/Formats/Textfile.cs
+++ b/SabreTools.Reports/Formats/Textfile.cs
@@ -13,6 +13,9 @@ namespace SabreTools.Reports.Formats
///
public class Textfile : BaseReport
{
+ ///
+ /// Represents if the output goes to console or to a file
+ ///
protected bool _writeToConsole = false;
///