operator- -- 戻り値の説明の番号を修正

1 · cpprefjp · Oct. 25, 2021, 6:50 a.m.
diff --git a/reference/chrono/time_point/op_minus.md b/reference/chrono/time_point/op_minus.md index 8cc3ef888..5ee318618 100644 --- a/reference/chrono/time_point/op_minus.md +++ b/reference/chrono/time_point/op_minus.md @@ -41,13 +41,13 @@ namespace chrono { ## 戻り値 -- (2) +- (1) ```cpp return lhs + (-rhs); ``` -- (3) +- (2) ```cpp return lhs.time_since_epoch() - rhs.time_since_epoch(); ...