diff --git a/CHANGELOG.md b/CHANGELOG.md
index 653bff51..6afb49a5 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -35,6 +35,7 @@ Main (3.0.0.alpha)
* [#320](https://github.com/rails/sdoc/pull/320) Remove jQuery [@jonathanhefner](https://github.com/jonathanhefner)
* [#322](https://github.com/rails/sdoc/pull/322) Use `type="search"` for search input [@jonathanhefner](https://github.com/jonathanhefner)
* [#323](https://github.com/rails/sdoc/pull/323) Update favicon [@jonathanhefner](https://github.com/jonathanhefner)
+* [#345](https://github.com/rails/sdoc/pull/345) Version explicit links to `api.rubyonrails.org` [@jonathanhefner](https://github.com/jonathanhefner)
2.6.1
=====
diff --git a/spec/postprocessor_spec.rb b/spec/postprocessor_spec.rb
index c481e3e8..1be2b9bc 100644
--- a/spec/postprocessor_spec.rb
+++ b/spec/postprocessor_spec.rb
@@ -72,9 +72,9 @@
HTML
with_env("HORO_PROJECT_VERSION" => "3.2.1", "HORO_PROJECT_NAME" => "My Rails Gem") do
- postprocessed = _(SDoc::Postprocessor.process(rendered))
- postprocessed.must_include %(Learn more)
- postprocessed.must_include %(Testing)
+ postprocessed = SDoc::Postprocessor.process(rendered)
+ _(postprocessed).must_include %(Learn more)
+ _(postprocessed).must_include %(Testing)
end
end