diff --git a/SabreTools.Models/NewExecutable/InternalRefRelocationRecord.cs b/SabreTools.Models/NewExecutable/InternalRefRelocationRecord.cs
index 931b1bf..125a7f0 100644
--- a/SabreTools.Models/NewExecutable/InternalRefRelocationRecord.cs
+++ b/SabreTools.Models/NewExecutable/InternalRefRelocationRecord.cs
@@ -13,7 +13,7 @@ namespace SabreTools.Models.NewExecutable
public byte SegmentNumber;
///
- /// 0
+ /// Always 0
///
public byte Reserved;
diff --git a/SabreTools.Models/NewExecutable/RelocationRecord.cs b/SabreTools.Models/NewExecutable/RelocationRecord.cs
index 6cd6022..39fcd6c 100644
--- a/SabreTools.Models/NewExecutable/RelocationRecord.cs
+++ b/SabreTools.Models/NewExecutable/RelocationRecord.cs
@@ -33,25 +33,25 @@
///
/// INTERNALREF
///
- /// Must be NULL if is not set to
+ /// Must be null if is not set to
public InternalRefRelocationRecord? InternalRefRelocationRecord { get; set; }
///
/// IMPORTNAME
///
- /// Must be NULL if is not set to
+ /// Must be null if is not set to
public ImportNameRelocationRecord? ImportNameRelocationRecord { get; set; }
///
/// IMPORTORDINAL
///
- /// Must be NULL if is not set to
+ /// Must be null if is not set to
public ImportOrdinalRelocationRecord? ImportOrdinalRelocationRecord { get; set; }
///
/// IMPORTORDINAL
///
- /// Must be NULL if is not set to
+ /// Must be null if is not set to
public OSFixupRelocationRecord? OSFixupRelocationRecord { get; set; }
}
}