From 73dbaa25f9beccaf2dda8e5e619746359ec4c454 Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 14 Apr 2004 04:06:52 +0000 Subject: * array.c, enum.c, eval.c, file.c, io.c, numeric.c, object.c, prec.c, process.c, re.c, string.c: typos in RDoc comments. [ruby-core:02783] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6158 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- string.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'string.c') diff --git a/string.c b/string.c index d5a62aade..2f11e9bee 100644 --- a/string.c +++ b/string.c @@ -3375,11 +3375,11 @@ rb_str_count(argc, argv, str) * split on whitespace as if ` ' were specified. * * If the limit parameter is omitted, trailing null fields are - * supressed. If limit is a positive number, at most that number of + * suppressed. If limit is a positive number, at most that number of * fields will be returned (if limit is 1, the entire * string is returned as the only entry in an array). If negative, there is no * limit to the number of fields returned, and trailing null fields are not - * supressed. + * suppressed. * * " now's the time".split #=> ["now's", "the", "time"] * " now's the time".split(' ') #=> ["now's", "the", "time"] -- cgit