From 46968fab0a0cec4a3e6e37f30b13d20998ba5e7a Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 20 Mar 2019 01:35:27 +0000 Subject: [PATCH] string.c: [DOC] fix reference to sprintf [ci skip] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67312 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- string.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/string.c b/string.c index c8b6e50846..3bf6f42e2a 100644 --- a/string.c +++ b/string.c @@ -1997,7 +1997,7 @@ rb_str_times(VALUE str, VALUE times) * the result of applying it to arg. If the format * specification contains more than one substitution, then arg * must be an Array or Hash containing the values to be - * substituted. See Kernel::sprintf for details of the format string. + * substituted. See Kernel#sprintf for details of the format string. * * "%05d" % 123 #=> "00123" * "%-5s: %016x" % [ "ID", self.object_id ] #=> "ID : 00002b054ec93168"