Skip to content

Commit

Permalink
Title case
Browse files Browse the repository at this point in the history
  • Loading branch information
Aragas committed Apr 11, 2024
1 parent ea6661e commit 5953e0b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/BUTR.CrashReport.Renderer.Html/CrashReportHtml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ private static string GetInvolvedHtml(CrashReportModel crashReport)
if (crashReport.InvolvedModules.Count > 0 || crashReport.InvolvedLoaderPlugins.Count > 0)
{
var sb = new StringBuilder();
sb.Append("From highest probability to lowest:")
sb.Append("From Highest Probability to Lowest:")
.Append("<ul>");
AddInvolvedModules(crashReport, sb);
AddInvolvedPlugins(crashReport, sb);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ private void RenderInvolvedModulesAndPlugins()
{
if (_enhancedStacktraceGroupedByModuleId.Length > 0 || _enhancedStacktraceGroupedByLoaderPluginIdId.Length > 0)
{
_imgui.Text("From highest probability to lowest:\0"u8);
_imgui.Text("From Highest Probability to Lowest:\0"u8);
_imgui.Indent();
RenderInvolvedModules();
RenderInvolvedPlugins();
Expand Down

0 comments on commit 5953e0b

Please sign in to comment.