From 5aba5f0454d8a7950963e7d11031d03483764c4f Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Tue, 2 Jan 2024 19:19:12 -0500 Subject: [PATCH] [DOC] Add parentheses in call-seq for String#include? --- string.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/string.c b/string.c index b770daf681..023545bace 100644 --- a/string.c +++ b/string.c @@ -6501,7 +6501,7 @@ rb_str_reverse_bang(VALUE str) /* * call-seq: - * include? other_string -> true or false + * include?(other_string) -> true or false * * Returns +true+ if +self+ contains +other_string+, +false+ otherwise: *