From b60f0b409ae6a572bde6331aef006b31c1d92599 Mon Sep 17 00:00:00 2001 From: Daniel Quinn Date: Fri, 13 Mar 2020 21:28:43 +0000 Subject: [PATCH] Fix broken link The old URL was to a hard-coded github branch. This new one is relative and *should* work in gitbook if I haven't misunderstood how it works. --- docs/skill-development/introduction/your-first-skill.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/skill-development/introduction/your-first-skill.md b/docs/skill-development/introduction/your-first-skill.md index ac945864..fa3b5e9c 100644 --- a/docs/skill-development/introduction/your-first-skill.md +++ b/docs/skill-development/introduction/your-first-skill.md @@ -176,7 +176,7 @@ def initialize(self): #### Intent handlers -Previously the `initialize` function was used to register intents, however our new `@intent_handler` and `@intent_file_handler` decorators are a cleaner way to achieve this. We will learn all about the different [Intents](https://github.com/MycroftAI/documentation/tree/156204fdccf839a4d5c57bf46f38c17ac1fee4eb/docs/skill-development/intents.md) shortly. +Previously the `initialize` function was used to register intents, however our new `@intent_handler` and `@intent_file_handler` decorators are a cleaner way to achieve this. We will learn all about the different [Intents](../intents) shortly. In our current HelloWorldSkill we can see two different styles.