From 25e08292d43451123d9215e2ba3b72123098c845 Mon Sep 17 00:00:00 2001 From: Peter Zsoldos Date: Thu, 4 Oct 2018 13:39:26 +0200 Subject: [PATCH] fix sinon.assert link in sandbox.assert doc (#1915) in the https://sinonjs.org/releases/v6.3.5/sandbox/#sandboxassert section, `sinon.assert` is linked to ./assertions, which translates to https://sinonjs.org/releases/v6.3.5/sandbox/assertions which gives a 404, as `.` in the url is interpreted to be under `/sandbox/`, while the assertions documentation is on the same hierarchy level --- docs/_releases/v6.3.5/sandbox.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_releases/v6.3.5/sandbox.md b/docs/_releases/v6.3.5/sandbox.md index fc1c65cc0..1b4551227 100644 --- a/docs/_releases/v6.3.5/sandbox.md +++ b/docs/_releases/v6.3.5/sandbox.md @@ -124,7 +124,7 @@ sinon.config = { #### `sandbox.assert();` -A convenience reference for [`sinon.assert`](./assertions) +A convenience reference for [`sinon.assert`](../assertions) *Since `sinon@2.0.0`*