From ce477089f690d3bedcaef088158b429db8a97d64 Mon Sep 17 00:00:00 2001 From: Benoit Daloze Date: Sun, 29 Sep 2019 11:04:28 +0200 Subject: [PATCH] [DOC] Fix typos in Array#{to_s,inspect} doc [ci skip] --- array.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/array.c b/array.c index 548dda6d4a..c63bfb3b93 100644 --- a/array.c +++ b/array.c @@ -2443,7 +2443,7 @@ inspect_ary(VALUE ary, VALUE dummy, int recur) * ary.to_s -> string * * Creates a string representation of +self+, by calling #inspect - * method on each elements. + * on each element. * * [ "a", "b", "c" ].to_s #=> "[\"a\", \"b\", \"c\"]" */