From dc9b1dca072b6149b48ac14792185292f7e6ceca Mon Sep 17 00:00:00 2001 From: olicooper Date: Mon, 9 Mar 2020 18:11:06 +0000 Subject: [PATCH] Invalid links on Quartz background worker docs This might be due to the way the markdown is rendered or requests are routed? Links without the hash are fine to include '.md' file extension. --- docs/en/Background-Workers-Quartz.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/en/Background-Workers-Quartz.md b/docs/en/Background-Workers-Quartz.md index 523704cb64..0e9c640ee2 100644 --- a/docs/en/Background-Workers-Quartz.md +++ b/docs/en/Background-Workers-Quartz.md @@ -38,7 +38,7 @@ public class YourModule : AbpModule ### Configuration -See [Configuration](Background-Jobs-Quartz.md#Configuration). +See [Configuration](Background-Jobs-Quartz#Configuration). ### Create a Background Worker @@ -61,8 +61,8 @@ public class MyLogWorker : QuartzBackgroundWorkerBase } ```` -We simply implemented the Execute method to write a log. The background worker is a **singleton by default**. If you want, you can also implement a [dependency interface](Dependency-Injection.md#DependencyInterfaces) to register it as another life cycle. +We simply implemented the Execute method to write a log. The background worker is a **singleton by default**. If you want, you can also implement a [dependency interface](Dependency-Injection#DependencyInterfaces) to register it as another life cycle. ### More -Please see Quartz's [documentation](https://www.quartz-scheduler.net/documentation/index.html) for more information. \ No newline at end of file +Please see Quartz's [documentation](https://www.quartz-scheduler.net/documentation/index.html) for more information.