Skip to content

Commit

Permalink
Fixed typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
sigma-axis committed May 1, 2024
1 parent 2994abe commit ab25bd1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tl_walkaround.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -265,9 +265,9 @@ class Timeline {
private:
// division that rounds toward negative infinity.
// `divisor` is assumed to be positive.
static constexpr auto floor_div(auto divident, auto const divisor) {
if (divident < 0) divident -= divisor - 1;
return divident / divisor;
static constexpr auto floor_div(auto dividend, auto const divisor) {
if (dividend < 0) dividend -= divisor - 1;
return dividend / divisor;
}

// タイムラインズームサイズの分母.
Expand Down

0 comments on commit ab25bd1

Please sign in to comment.