summaryrefslogtreecommitdiff
path: root/string.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-03-20 01:35:27 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-03-20 01:35:27 +0000
commit46968fab0a0cec4a3e6e37f30b13d20998ba5e7a (patch)
tree7b8c29eb1967cb3b2a0cd7b14952ef2b19aafa21 /string.c
parent8b49e5b47d26228602f2dd57a81a6c12b1a19dde (diff)
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
Diffstat (limited to 'string.c')
-rw-r--r--string.c2
1 files changed, 1 insertions, 1 deletions
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 <i>arg</i>. If the format
* specification contains more than one substitution, then <i>arg</i>
* 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"