From 1aff19e3f55bfd306a4cebc1207c175067378d3e Mon Sep 17 00:00:00 2001 From: Matthew Conway Date: Wed, 19 Jun 2013 22:52:16 -0700 Subject: [PATCH] Correct a usage example for String#include? --- string.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/string.c b/string.c index 9cc8e1e..680b5ee 100644 --- a/string.c +++ b/string.c @@ -4313,7 +4313,7 @@ rb_str_reverse_bang(VALUE str) * * "hello".include? "lo" #=> true * "hello".include? "ol" #=> false - * "hello".include? ?h #=> true + * "hello".include? "h" #=> true */ static VALUE -- 1.8.1.5