From 3845491d92c27cf55a8962f8c23429eaafda036f Mon Sep 17 00:00:00 2001 From: zverok Date: Sun, 29 Dec 2019 22:55:23 +0200 Subject: Fix examples syntax --- lib/json.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/json.rb b/lib/json.rb index ec9b571..151d9c2 100644 --- a/lib/json.rb +++ b/lib/json.rb @@ -45,7 +45,7 @@ require 'json/common' # Or an alternative way: # # require 'json' -# puts {:hello => "goodbye"}.to_json # => "{\"hello\":\"goodbye\"}" +# puts({:hello => "goodbye"}.to_json) # => "{\"hello\":\"goodbye\"}" # # JSON.generate only allows objects or arrays to be converted # to JSON syntax. to_json, however, accepts many Ruby classes @@ -53,7 +53,7 @@ require 'json/common' # # require 'json' # -# 1.to_json => "1" +# 1.to_json # => "1" # # The {#generate}[rdoc-ref:JSON#generate] method accepts a variety of options # to set the formatting of string output and defining what input is accepteable. -- cgit v1.2.1