From 089227e94823542acfdafa68541d330eee42ffea Mon Sep 17 00:00:00 2001 From: haseponpon <36598331+p0pemaru@users.noreply.github.com> Date: Wed, 16 Aug 2023 22:51:17 +0900 Subject: [PATCH] [DOC] Specify the unit of return value for `Time#-` --- time.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/time.c b/time.c index 617326f996..d0c1d0811e 100644 --- a/time.c +++ b/time.c @@ -4410,7 +4410,7 @@ time_plus(VALUE time1, VALUE time2) * * When +other_time+ is given, * returns a Float whose value is the difference - * of the numeric values of +self+ and +other_time+: + * of the numeric values of +self+ and +other_time+ in seconds: * * t - t # => 0.0 *