From cf7e17bf68e1f96dff58eb2379ca99c32ed9414b Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Thu, 4 Jun 2020 05:52:49 -0400 Subject: [PATCH] Fix documentation link --- src/Tgstation.Server.Host/Jobs/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tgstation.Server.Host/Jobs/README.md b/src/Tgstation.Server.Host/Jobs/README.md index 48ec91bddd..53bf47f8fc 100644 --- a/src/Tgstation.Server.Host/Jobs/README.md +++ b/src/Tgstation.Server.Host/Jobs/README.md @@ -1,5 +1,5 @@ # Jobs Subsystem - [IJobManager](./IJobManager.cs) and [implementation](./JobManager.cs) is where the bulk of the magic happens. The `RegisterOperation()` call is what takes a work unit and sets it to run asynchronously while being tracked through the API. -- [JobException] is a special .NET Exception implementation that is able to carry API `ErrorCode`s and other additional data. +- [JobException](./JobException.cs) is a special .NET Exception implementation that is able to carry API `ErrorCode`s and other additional data. - [JobHandler](./JobHandler.cs) carries the [CancellationTokenSource](https://stackoverflow.com/questions/20638952/cancellationtoken-and-cancellationtokensource-how-to-use-it) for a given job in a disposable context.