diff --git a/docs/tutorial/howto_build_your_own_type_of_documentation_with_custom_plug-in.md b/docs/tutorial/howto_build_your_own_type_of_documentation_with_custom_plug-in.md index 8d70d6af0a0..561f217c7e6 100644 --- a/docs/tutorial/howto_build_your_own_type_of_documentation_with_custom_plug-in.md +++ b/docs/tutorial/howto_build_your_own_type_of_documentation_with_custom_plug-in.md @@ -57,7 +57,7 @@ Create a document processor 3. Load our rtf file by reading all text: [!Code-csharp[Load](../codesnippet/Rtf/RtfDocumentProcessor.cs?name=Load)] - We use `Dictionary` as the data model, similar to how [ConceptualDocumentProcessor](https://github.com/dotnet/docfx/blob/dev/src/Docfx.Build.ConceptualDocuments/ConceptualDocumentProcessor.cs) + We use `Dictionary` as the data model, similar to how [ConceptualDocumentProcessor](https://github.com/dotnet/docfx/blob/main/src/Docfx.Build/Conceptual/ConceptualDocumentProcessor.cs) stores the content of markdown files. 4. Implement `Save` method as follows: