summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorRhys Powell <rhys@rpowell.me>2021-07-24 12:58:27 +1000
committerGitHub <noreply@github.com>2021-07-24 12:58:27 +1000
commit947a84d0dd079e635d92283314477fb582ad827e (patch)
tree49cc8d20bc63d3e3ba58e64fbd359340baf6604a /lib
parentf6a975e4b58efc23780a2bb39c9a87a0d66170fd (diff)
downloadpsych-947a84d0dd079e635d92283314477fb582ad827e.tar.gz
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.
Diffstat (limited to 'lib')
-rw-r--r--lib/psych.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/psych.rb b/lib/psych.rb
index 1efe8d5..ecf3b39 100644
--- a/lib/psych.rb
+++ b/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.