From ea45c8ec9241a4d5951f9d06f9a991e1cacc029f Mon Sep 17 00:00:00 2001 From: Eddie Webbinaro Date: Sat, 17 Apr 2021 14:03:55 -0400 Subject: [PATCH] start.md: fix link to custom extenders Currently links to https://docs.flarum.org/extend/custom-extenders.html but shoudl link to https://docs.flarum.org/extend/extensibility.html#custom-extenders --- docs/extend/start.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/extend/start.md b/docs/extend/start.md index df2850b5e..a5c58ee90 100644 --- a/docs/extend/start.md +++ b/docs/extend/start.md @@ -37,7 +37,7 @@ You first create an instance of the extender, and then call methods on it for fu To keep things consistent, we use this concept of extenders in both the backend (in PHP land) and the frontend (in JavaScript land). _Everything_ you do in your extension should be done via extenders, because they are a **guarantee** we are giving to you that a future minor release of Flarum won't break your extension. -All of the extenders currently available to you from Flarum's core can be found in the [`Extend` namespace](https://github.com/flarum/core/blob/master/src/Extend) [(PHP API documentation)](https://api.docs.flarum.org/php/master/flarum/extend) Extensions may also offer their [own extenders](custom-extenders.md). +All of the extenders currently available to you from Flarum's core can be found in the [`Extend` namespace](https://github.com/flarum/core/blob/master/src/Extend) [(PHP API documentation)](https://api.docs.flarum.org/php/master/flarum/extend) Extensions may also offer their [own extenders](extensibility.md#custom-extenders). ## Hello World