1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[DOC] Fix typos in Array#{to_s,inspect} doc [ci skip]

This commit is contained in:
Benoit Daloze 2019-09-29 11:04:28 +02:00
parent e2d97cffe5
commit ce477089f6

View file

@ -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\"]"
*/