From 3efe410dd0812a3781b9f75a52d67a632009b2d2 Mon Sep 17 00:00:00 2001 From: eregon Date: Thu, 14 Sep 2017 14:54:29 +0000 Subject: [PATCH] time.c (Time#-): Fix documentation. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59908 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- time.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/time.c b/time.c index 2314aca662..e55628fc1b 100644 --- a/time.c +++ b/time.c @@ -3650,7 +3650,7 @@ time_plus(VALUE time1, VALUE time2) * time - other_time -> float * time - numeric -> time * - * Difference --- Returns a new Time object that represents the difference + * Difference --- Returns a difference in seconds as a Float * between _time_ and +other_time+, or subtracts the given number * of seconds in +numeric+ from _time_. *