Skip to content

Commit 8e177a1

Browse files
committed
Fix documentation comments
1 parent 4f7b476 commit 8e177a1

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

src/ThisAssembly.AssemblyInfo/CSharp.sbntxt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ using System.Runtime.CompilerServices;
1212

1313
/// <summary>
1414
/// Provides access to the current assembly information as pure constants,
15-
// without requiring reflection.
15+
/// without requiring reflection.
1616
/// </summary>
1717
partial class ThisAssembly
1818
{
@@ -24,6 +24,7 @@ partial class ThisAssembly
2424
public static partial class Info
2525
{
2626
{{~ for prop in Properties ~}}
27+
/// <summary>{{ prop.Key }} => {{ prop.Value }}</summary>
2728
public const string {{ prop.Key }} = @"{{ prop.Value }}";
2829

2930
{{~ end ~}}

src/ThisAssembly.Metadata/CSharp.sbntxt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ using System.Runtime.CompilerServices;
1212

1313
/// <summary>
1414
/// Provides access to the current assembly information as pure constants,
15-
// without requiring reflection.
15+
/// without requiring reflection.
1616
/// </summary>
1717
partial class ThisAssembly
1818
{
@@ -24,6 +24,7 @@ partial class ThisAssembly
2424
public static partial class Metadata
2525
{
2626
{{~ for md in Metadata ~}}
27+
/// <summary>{{ md.Key }} => {{ md.Value }}</summary>
2728
public const string {{ md.Key }} = @"{{ md.Value }}";
2829

2930
{{~ end ~}}

src/ThisAssembly.Project/CSharp.sbntxt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ using System.Runtime.CompilerServices;
1212

1313
/// <summary>
1414
/// Provides access to the current assembly information as pure constants,
15-
// without requiring reflection.
15+
/// without requiring reflection.
1616
/// </summary>
1717
partial class ThisAssembly
1818
{
@@ -24,6 +24,7 @@ partial class ThisAssembly
2424
public static partial class Project
2525
{
2626
{{~ for prop in Properties ~}}
27+
/// <summary>{{ prop.Key }} => {{ prop.Value }}</summary>
2728
public const string {{ prop.Key }} = @"{{ prop.Value }}";
2829

2930
{{~ end ~}}

0 commit comments

Comments
 (0)