aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRhys Powell <rhys@rpowell.me>2021-07-24 12:58:27 +1000
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2021-07-29 15:54:41 +0900
commite99d2d066fc2ce05e79616e7ab43410955d769ea (patch)
tree1c41d392646aa2101b805c6bf9bc30a214f596a6
parentb11638eed299a3f2c9df084fd26b001a46b2fbd2 (diff)
downloadruby-e99d2d066fc2ce05e79616e7ab43410955d769ea.tar.gz
[ruby/psych] fix: use git repository link for LibYAML in docs
LibYAML has moved from their previous Mercurial based hosting on BitBucket to a git repository on GitHub. This commit updates the `Psych` module's documentation to point to this new repository, instead of the old one which is now a 404. https://github.com/ruby/psych/commit/947a84d0dd
-rw-r--r--ext/psych/lib/psych.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/psych/lib/psych.rb b/ext/psych/lib/psych.rb
index 1efe8d5f62..ecf3b3927e 100644
--- a/ext/psych/lib/psych.rb
+++ b/ext/psych/lib/psych.rb
@@ -33,7 +33,7 @@ require 'psych/class_loader'
#
# Psych is a YAML parser and emitter.
# Psych leverages libyaml [Home page: https://pyyaml.org/wiki/LibYAML]
-# or [HG repo: https://bitbucket.org/xi/libyaml] for its YAML parsing
+# or [git repo: https://github.com/yaml/libyaml] for its YAML parsing
# and emitting capabilities. In addition to wrapping libyaml, Psych also
# knows how to serialize and de-serialize most Ruby objects to and from
# the YAML format.