Skip to content

Commit 4fcf29b

Browse files
committed
fix: no starter dash
1 parent 8cc4558 commit 4fcf29b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

DiscordLab.Bot/API/Updates/Module.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ public Module(GitHubRelease release, GitHubReleaseAsset asset)
6161
/// <param name="modules">The modules to generate for.</param>
6262
/// <returns>The generated string.</returns>
6363
public static string GenerateUpdateString(IEnumerable<Module> modules) => string.Join(
64-
"\n- ",
64+
"\n",
6565
modules.Select(module =>
66-
$"{module.Name} | Current Version: {module.ExistingPlugin!.Version} | Latest Version: {module.Version}"));
66+
$"- {module.Name} | Current Version: {module.ExistingPlugin!.Version} | Latest Version: {module.Version}"));
6767

6868
/// <summary>
6969
/// Downloads this module.

0 commit comments

Comments
 (0)