From e0860e1d2fcb498269568d2abf277064f8cc4ac5 Mon Sep 17 00:00:00 2001 From: nathen Date: Tue, 23 Jan 2024 23:48:12 -0500 Subject: [PATCH] Fix comments --- osu.Game.Rulesets.Osu/Statistics/AimError.cs | 4 +++- osu.Game.Rulesets.Osu/Statistics/AverageAimError.cs | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/osu.Game.Rulesets.Osu/Statistics/AimError.cs b/osu.Game.Rulesets.Osu/Statistics/AimError.cs index 238279319f..e331e558b4 100644 --- a/osu.Game.Rulesets.Osu/Statistics/AimError.cs +++ b/osu.Game.Rulesets.Osu/Statistics/AimError.cs @@ -14,7 +14,7 @@ using osuTK; namespace osu.Game.Rulesets.Osu.Statistics { /// - /// Displays the unstable rate statistic for a given play. + /// Displays the aim error statistic for a given play. /// public partial class AimError : SimpleStatisticItem { @@ -23,6 +23,8 @@ namespace osu.Game.Rulesets.Osu.Statistics /// /// Creates and computes an statistic. /// + /// Sequence of s to calculate the aim error based on. + /// The containing the radii of the circles, used to compute the variance of misses. public AimError(IEnumerable hitEvents, IBeatmap playableBeatmap) : base("Aim Error") { diff --git a/osu.Game.Rulesets.Osu/Statistics/AverageAimError.cs b/osu.Game.Rulesets.Osu/Statistics/AverageAimError.cs index 3d846337e3..3f25763723 100644 --- a/osu.Game.Rulesets.Osu/Statistics/AverageAimError.cs +++ b/osu.Game.Rulesets.Osu/Statistics/AverageAimError.cs @@ -12,7 +12,7 @@ using osuTK; namespace osu.Game.Rulesets.Osu.Statistics { /// - /// Displays the unstable rate statistic for a given play. + /// Displays the aim error statistic for a given play. /// public partial class AverageAimError : SimpleStatisticItem { @@ -21,7 +21,7 @@ namespace osu.Game.Rulesets.Osu.Statistics /// /// Creates and computes an statistic. /// - /// Sequence of s to calculate the unstable rate based on. + /// Sequence of s to calculate the aim error based on. public AverageAimError(IEnumerable hitEvents) : base("Average Aim Error") {