From 01966ba9bf2e81ae4b0959298bb059c34276f1b7 Mon Sep 17 00:00:00 2001 From: Graham Esau Date: Thu, 26 Dec 2019 16:52:52 +0000 Subject: [PATCH] Fix internal docs link --- docs/2-implementing.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/2-implementing.md b/docs/2-implementing.md index eaf4bb5..c0910f3 100644 --- a/docs/2-implementing.md +++ b/docs/2-implementing.md @@ -7,9 +7,7 @@ permalink: /implementing # Implementing JsonSchema -How to implement JsonSchema manually, without deriving it... - -[Deriving `JsonSchema`]({% link 1-deriving.md %}) is usually the easiest way to enable JSON schema generation for your types. But if you need more customisation, you can also implement `JsonSchema` manually. This trait has two associated functions which must be implemented, and one which can optionally be implemented: +[Deriving `JsonSchema`]({{ site.baseurl }}{% link 1-deriving.md %}) is usually the easiest way to enable JSON schema generation for your types. But if you need more customisation, you can also implement `JsonSchema` manually. This trait has two associated functions which must be implemented, and one which can optionally be implemented: ## schema_name ```rust