diff options
author | Nobuyoshi Nakada <[email protected]> | 2022-02-11 10:30:28 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2022-02-12 12:38:36 +0900 |
commit | 50c972a1ae1b15b292f45e78ff3227644f3cabda (patch) | |
tree | 294a94a2e5ba8326a3a313293e319458a7010e28 /io.c | |
parent | e6b537e605381b6f1c9518adbeb6813c5e579df7 (diff) |
[DOC] Simplify operator method references
Diffstat (limited to 'io.c')
-rw-r--r-- | io.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -14432,7 +14432,7 @@ set_LAST_READ_LINE(VALUE val, ID _x, VALUE *_y) * - ::binwrite:: Writes the given string to the file at the given filepath, * in binary mode. * - ::write:: Writes the given string to +self+. - * - {::<<}[#method-i-3C-3C]:: Appends the given string to +self+. + * - ::<<:: Appends the given string to +self+. * - #print:: Prints last read line or given objects to +self+. * - #printf:: Writes to +self+ based on the given format string and objects. * - #putc:: Writes a character to +self+. |