From 0e71bdd637a6b3c34f18d4b3630d55fa4cdfd2a3 Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Fri, 18 Dec 2020 22:04:48 -0600 Subject: Enable XML doc. --- src/WixToolset.Core.WindowsInstaller/RowDictionary.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/WixToolset.Core.WindowsInstaller/RowDictionary.cs') diff --git a/src/WixToolset.Core.WindowsInstaller/RowDictionary.cs b/src/WixToolset.Core.WindowsInstaller/RowDictionary.cs index 101ebefd..bbb97c25 100644 --- a/src/WixToolset.Core.WindowsInstaller/RowDictionary.cs +++ b/src/WixToolset.Core.WindowsInstaller/RowDictionary.cs @@ -7,13 +7,13 @@ namespace WixToolset.Core.WindowsInstaller using WixToolset.Data.WindowsInstaller; /// - /// A dictionary of rows. Unlike the this + /// A dictionary of rows. Unlike the RowIndexedList this /// will throw when multiple rows with the same key are added. /// - public sealed class RowDictionary : Dictionary where T : Row + internal sealed class RowDictionary : Dictionary where T : Row { /// - /// Creates an empty . + /// Creates an empty . /// public RowDictionary() : base(StringComparer.InvariantCulture) @@ -21,9 +21,9 @@ namespace WixToolset.Core.WindowsInstaller } /// - /// Creates and populates a with the rows from the given enumerator. + /// Creates and populates a with the rows from the given enumerator. /// - /// Rows to add. + /// Rows to add. public RowDictionary(IEnumerable rows) : this() { @@ -34,7 +34,7 @@ namespace WixToolset.Core.WindowsInstaller } /// - /// Creates and populates a with the rows from the given . + /// Creates and populates a with the rows from the given . /// /// The table to index. /// -- cgit v1.2.3-55-g6feb