diff --git a/Dalamud/Support/BugBait.cs b/Dalamud/Support/BugBait.cs
index eda2e4f78..2de4ee7e5 100644
--- a/Dalamud/Support/BugBait.cs
+++ b/Dalamud/Support/BugBait.cs
@@ -19,6 +19,7 @@ namespace Dalamud.Support
/// Send feedback to Discord.
///
/// The plugin to send feedback about.
+ /// Whether or not the plugin is a testing plugin.
/// The content of the feedback.
/// The reporter name.
/// Whether or not the most recent exception to occur should be included in the report.
diff --git a/Dalamud/Support/Troubleshooting.cs b/Dalamud/Support/Troubleshooting.cs
index 85927156d..8fa014b1f 100644
--- a/Dalamud/Support/Troubleshooting.cs
+++ b/Dalamud/Support/Troubleshooting.cs
@@ -33,7 +33,7 @@ namespace Dalamud.Support
{
LastException = exception;
- var fixedContext = context?.Split(new []{'\r', '\n'}, StringSplitOptions.RemoveEmptyEntries).FirstOrDefault();
+ var fixedContext = context?.Split(new[] { '\r', '\n' }, StringSplitOptions.RemoveEmptyEntries).FirstOrDefault();
try
{