Skip to content

Commit c6fdf8f

Browse files
committed
missing comments
1 parent 21a1ecd commit c6fdf8f

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/Compatibility/ApiDiff/Microsoft.DotNet.ApiDiff/MemoryOutputDiffGenerator.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -43,16 +43,16 @@ public class MemoryOutputDiffGenerator : IDiffGenerator
4343
/// <summary>
4444
/// Initializes a new instance of the <see cref="MemoryOutputDiffGenerator"/> class.
4545
/// </summary>
46-
/// <param name="log"></param>
47-
/// <param name="beforeLoader"></param>
48-
/// <param name="afterLoader"></param>
49-
/// <param name="beforeAssemblySymbols"></param>
50-
/// <param name="afterAssemblySymbols"></param>
46+
/// <param name="log">The logger to use for logging messages.</param>
47+
/// <param name="beforeLoader">The loader for the "before" assembly symbols.</param>
48+
/// <param name="afterLoader">The loader for the "after" assembly symbols.</param>
49+
/// <param name="beforeAssemblySymbols">The dictionary of "before" assembly symbols.</param>
50+
/// <param name="afterAssemblySymbols">The dictionary of "after" assembly symbols.</param>
5151
/// <param name="attributesToExclude">An optional list of attributes to avoid showing in the diff. If <see langword="null"/>, the default list of attributes to exclude <see cref="DiffGeneratorFactory.DefaultAttributesToExclude"/> is used. If an empty list, no attributes are excluded.</param>
5252
/// <param name="apisToExclude">An optional list of APIs to avoid showing in the diff.</param>
53-
/// <param name="addPartialModifier"></param>
54-
/// <param name="hideImplicitDefaultConstructors"></param>
55-
/// <param name="diagnosticOptions"></param>
53+
/// <param name="addPartialModifier">A boolean indicating whether to add the partial modifier to types.</param>
54+
/// <param name="hideImplicitDefaultConstructors">A boolean indicating whether to hide implicit default constructors.</param>
55+
/// <param name="diagnosticOptions">An optional dictionary of diagnostic options.</param>
5656
internal MemoryOutputDiffGenerator(
5757
ILog log,
5858
IAssemblySymbolLoader beforeLoader,

0 commit comments

Comments
 (0)