Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions lib/json.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@
#
# \JSON is a lightweight data-interchange format.
#
# \JSON is easy for us humans to read and write,
# and equally simple for machines to read (parse) and write (generate).
#
# \JSON is language-independent, making it an ideal interchange format
# for applications in differing programming languages
# and on differing operating systems.
#
# == \JSON Values
#
# A \JSON value is one of the following:
# - Double-quoted text: <tt>"foo"</tt>.
# - Number: +1+, +1.0+, +2.0e2+.
Expand Down