summaryrefslogtreecommitdiff
path: root/pack.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-03-28 03:33:35 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-03-28 03:33:35 +0000
commitde0ef1a9dfd9f966ad7e667788f3e333944d959e (patch)
tree53bbb3c3560a6f548021486afbf423e740740774 /pack.c
parent832bc50768fe42f95f8dda0483f0ba1556175c9d (diff)
[DOC] fix markups [ci skip]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67354 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'pack.c')
-rw-r--r--pack.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/pack.c b/pack.c
index b1efef54f1..3305ccaa1e 100644
--- a/pack.c
+++ b/pack.c
@@ -186,7 +186,7 @@ VALUE_to_float(VALUE obj)
* exclamation mark (``<code>!</code>'') to use the underlying
* platform's native size for the specified type; otherwise, they use a
* platform-independent size. Spaces are ignored in the template
- * string. See also <code>String#unpack</code>.
+ * string. See also String#unpack.
*
* a = [ "a", "b", "c" ]
* n = [ 65, 66, 67 ]
@@ -1805,7 +1805,7 @@ pack_unpack_internal(VALUE str, VALUE fmt, int mode)
* exclamation mark (``<code>!</code>'') to use the underlying
* platform's native size for the specified type; otherwise, it uses a
* platform-independent consistent size. Spaces are ignored in the
- * format string. See also <code>String#unpack1</code>, <code>Array#pack</code>.
+ * format string. See also String#unpack1, Array#pack.
*
* "abc \0\0abc \0\0".unpack('A6Z6') #=> ["abc", "abc "]
* "abc \0\0".unpack('a3a3') #=> ["abc", " \000\000"]
@@ -1922,7 +1922,7 @@ pack_unpack(VALUE str, VALUE fmt)
*
* Decodes <i>str</i> (which may contain binary data) according to the
* format string, returning the first value extracted.
- * See also <code>String#unpack</code>, <code>Array#pack</code>.
+ * See also String#unpack, Array#pack.
*/
static VALUE