Skip to content

Commit 3ddb52c

Browse files
committed
Missing docs
1 parent ea4cbde commit 3ddb52c

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

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

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -32,24 +32,24 @@ internal sealed class FileOutputDiffGenerator : IDiffGenerator
3232
private readonly Dictionary<string, string> _results;
3333

3434
/// <summary>
35-
///
35+
/// Initializes a new instance of the <see cref="FileOutputDiffGenerator"/> class.
3636
/// </summary>
37-
/// <param name="log"></param>
38-
/// <param name="beforeAssembliesFolderPath"></param>
39-
/// <param name="beforeAssemblyReferencesFolderPath"></param>
40-
/// <param name="afterAssembliesFolderPath"></param>
41-
/// <param name="afterAssemblyReferencesFolderPath"></param>
42-
/// <param name="outputFolderPath"></param>
43-
/// <param name="beforeFriendlyName"></param>
44-
/// <param name="afterFriendlyName"></param>
45-
/// <param name="tableOfContentsTitle"></param>
37+
/// <param name="log">The logger to use for logging messages.</param>
38+
/// <param name="beforeAssembliesFolderPath">The folder path containing the assemblies before the changes.</param>
39+
/// <param name="beforeAssemblyReferencesFolderPath">The folder path containing the assembly references before the changes.</param>
40+
/// <param name="afterAssembliesFolderPath">The folder path containing the assemblies after the changes.</param>
41+
/// <param name="afterAssemblyReferencesFolderPath">The folder path containing the assembly references after the changes.</param>
42+
/// <param name="outputFolderPath">The folder path where the output files will be written.</param>
43+
/// <param name="beforeFriendlyName">The friendly name for the before version of the assemblies.</param>
44+
/// <param name="afterFriendlyName">The friendly name for the after version of the assemblies.</param>
45+
/// <param name="tableOfContentsTitle">The title for the table of contents.</param>
4646
/// <param name="assembliesToExclude">An optional list of assemblies to avoid showing in the diff.</param>
4747
/// <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>
4848
/// <param name="apisToExclude">An optional list of APIs to avoid showing in the diff.</param>
49-
/// <param name="addPartialModifier"></param>
50-
/// <param name="hideImplicitDefaultConstructors"></param>
49+
/// <param name="addPartialModifier">A value indicating whether to add the partial modifier to types.</param>
50+
/// <param name="hideImplicitDefaultConstructors">A value indicating whether to hide implicit default constructors.</param>
5151
/// <param name="writeToDisk">If <see langword="true"/>, when calling <see cref="RunAsync"/>, the generated markdown files get written to disk, and no item is added to the <see cref="RunAsync"/> dictionary. If <see langword="false"/>, when calling <see cref="RunAsync"/>, the generated markdown files get added to the <see cref="RunAsync"/> dictionary (with the file path as the dictionary key) and none of them is written to disk. This is meant for testing purposes.</param>
52-
/// <param name="diagnosticOptions"></param>
52+
/// <param name="diagnosticOptions">An optional set of diagnostic options.</param>
5353
internal FileOutputDiffGenerator(ILog log,
5454
string beforeAssembliesFolderPath,
5555
string? beforeAssemblyReferencesFolderPath,

0 commit comments

Comments
 (0)