diff --git a/src/any/performance/mod.rs b/src/any/performance/mod.rs index 6c1fe450..c4e8679d 100644 --- a/src/any/performance/mod.rs +++ b/src/any/performance/mod.rs @@ -344,7 +344,8 @@ impl<'map> Performance<'map> { /// Specify the amount of "small tick" hits. /// - /// Only relevant for osu!standard lazer scores without slider accuracy. + /// Only relevant for osu!standard lazer scores without slider accuracy. In + /// that case, this value is the amount of slider tail hits. pub fn small_ticks_hits(self, small_tick_hits: u32) -> Self { if let Self::Osu(osu) = self { Self::Osu(osu.small_tick_hits(small_tick_hits)) diff --git a/src/osu/performance/mod.rs b/src/osu/performance/mod.rs index e5a79469..39940f9f 100644 --- a/src/osu/performance/mod.rs +++ b/src/osu/performance/mod.rs @@ -182,7 +182,8 @@ impl<'map> OsuPerformance<'map> { /// Specify the amount of "small tick" hits. /// - /// Only relevant for osu!lazer scores without slider accuracy. + /// Only relevant for osu!lazer scores without slider accuracy. In that + /// case, this value is the amount of slider tail hits. pub const fn small_tick_hits(mut self, small_tick_hits: u32) -> Self { self.small_tick_hits = Some(small_tick_hits);