From 8e4828245504dfc8d4f9cb7974bc4431ff788245 Mon Sep 17 00:00:00 2001 From: Giorgos Tsiftsis Date: Sat, 8 Feb 2014 14:28:33 +0200 Subject: [PATCH] * lib/yaml.rb: [Doc] Minor changes to documentation & more links --- lib/yaml.rb | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lib/yaml.rb b/lib/yaml.rb index f9f8e6d..54af987 100644 --- a/lib/yaml.rb +++ b/lib/yaml.rb @@ -56,7 +56,7 @@ end # # Working with YAML can be very simple, for example: # -# require 'yaml' # STEP ONE, REQUIRE YAML! +# require 'yaml' # # Parse a YAML string # YAML.load("--- foo") #=> "foo" # @@ -83,7 +83,11 @@ end # # == More info # -# For more advanced details on the implementation see Psych, and also check out +# For more advanced details on the implementation see +# {Psych}[https://github.com/tenderlove/psych], and also check out # http://yaml.org for spec details and other helpful information. +# Psych documentation can be found +# {here}[https://github.com/tenderlove/psych/blob/master/lib/psych.rb]. You can +# check out Syck {here}[https://github.com/tenderlove/syck] module YAML end -- 1.7.10.4