~singpolyma/dhall-ruby

98e02dd296d06f95748558bc1af8546ec4b598c3 — Stephen Paul Weber 4 years ago ed3cc63
to_a keeps elements as Dhall
1 files changed, 1 insertions(+), 1 deletions(-)

M README.md
M README.md => README.md +1 -1
@@ 174,7 174,7 @@ A Dhall expression may be a list of other expressions.  Lists are `Enumerable` a
      list[100]                          # => #<Dhall::OptionalNone value_type=...>
      list.reverse                       # => #<Dhall::List elements=[#<Dhall::Natural value=2>, #<Dhall::Natural value=1>] element_type=...>
      list.join(",")                     # => "1,2"
      list.to_a                          # => [1,2]
      list.to_a                          # => [#<Dhall::Natural value=1>, #<Dhall::Natural value=2>]
    end

## Record