Skip to content

Commit 6e6c5ac

Browse files
committed
(GH-136) Fix default value
The __ wasn't actually doing anything, since heading was promoted to markdown heading.
1 parent 7ef9b3b commit 6e6c5ac

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Source/GitReleaseManager/Configuration/Config.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public Config()
2121
FooterIncludesMilestone = false,
2222
MilestoneReplaceText = string.Empty,
2323
IncludeShaSection = false,
24-
ShaSectionHeading = "__SHA256 Hashes of the release artifacts__",
24+
ShaSectionHeading = "SHA256 Hashes of the release artifacts",
2525
ShaSectionLineFormat = "- `{1}\t{0}`"
2626
};
2727

Source/GitReleaseManager/Configuration/ConfigurationProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ private static void EnsureDefaultConfig(Config configuration)
8484
{
8585
if(configuration.Create.ShaSectionHeading == null)
8686
{
87-
configuration.Create.ShaSectionHeading = "__SHA256 Hashes of the release artifacts__";
87+
configuration.Create.ShaSectionHeading = "SHA256 Hashes of the release artifacts";
8888
}
8989

9090
if(configuration.Create.ShaSectionLineFormat == null)

0 commit comments

Comments
 (0)