aboutsummaryrefslogtreecommitdiffstats
path: root/io.c
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2022-02-11 10:30:28 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2022-02-12 12:38:36 +0900
commit50c972a1ae1b15b292f45e78ff3227644f3cabda (patch)
tree294a94a2e5ba8326a3a313293e319458a7010e28 /io.c
parente6b537e605381b6f1c9518adbeb6813c5e579df7 (diff)
downloadruby-50c972a1ae1b15b292f45e78ff3227644f3cabda.tar.gz
[DOC] Simplify operator method references
Diffstat (limited to 'io.c')
-rw-r--r--io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/io.c b/io.c
index 2acecb550b..88897960ab 100644
--- a/io.c
+++ b/io.c
@@ -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+.