summaryrefslogtreecommitdiff
path: root/lib/yaml.rb
diff options
context:
space:
mode:
authorzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-02-08 19:08:45 +0000
committerzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-02-08 19:08:45 +0000
commit7925015f4cc03c74492f2fe2b2a31507de145d5f (patch)
tree10bd5aa7267e27d81887784b0c8ed317e5c32ebb /lib/yaml.rb
parentc5b8a6fa95da2728f28a859ddf7e3a8ed9bed476 (diff)
* lib/yaml.rb: [DOC] Add links to syck and psych on github [Bug #9501]
Based on a patch by Giorgos Tsiftsis [ci skip] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44893 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/yaml.rb')
-rw-r--r--lib/yaml.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/yaml.rb b/lib/yaml.rb
index f9f8e6d665..3b4e4234f7 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"
#
@@ -85,5 +85,9 @@ end
#
# For more advanced details on the implementation see Psych, and also check out
# http://yaml.org for spec details and other helpful information.
+#
+# Pysch is maintained by Aaron Patterson on github: https://github.com/tenderlove/psych
+#
+# Syck can also be found on github: https://github.com/tenderlove/syck
module YAML
end