From c04ae3ca96eb16e0a41644e725b1ed7006543a34 Mon Sep 17 00:00:00 2001 From: Sam Julien Date: Thu, 18 Jul 2024 09:57:28 -0700 Subject: [PATCH] Fix repo typo --- docs/framework/release-notes-generator.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/framework/release-notes-generator.mdx b/docs/framework/release-notes-generator.mdx index 2a74d46f8..e077d62fc 100644 --- a/docs/framework/release-notes-generator.mdx +++ b/docs/framework/release-notes-generator.mdx @@ -1,7 +1,7 @@ --- title: "Release notes generator" --- -In this tutorial, you'll build a release notes generator using the Writer Framework. This application will help you generate release notes as formatted HTML for software updates based on user-provided data as a CSV file. You can check out the [finished code on GitHub](https://github.com/writer/framework-tutorials/release-notes-generator/end) to see what you'll be building. +In this tutorial, you'll build a release notes generator using the Writer Framework. This application will help you generate release notes as formatted HTML for software updates based on user-provided data as a CSV file. You can check out the [finished code on GitHub](https://github.com/writer/framework-tutorials/tree/main/release-notes-generator/end) to see what you'll be building. The application consists of two main parts: the backend, which processes the uploaded CSV file and generates the release notes, and the frontend, which displays the release notes and allows users to download them. @@ -394,7 +394,7 @@ The final Release notes section should look like this: ![Release notes final UI](/framework/images/tutorial/release_notes/release_gen_6.png) -You can [see the finished code on GitHub](https://github.com/writer/framework-tutorials/release-notes-generator/end) or in `framework-tutorials/release-notes-generator/end` in the `tutorials` repo you cloned at the beginning of the tutorial. +You can [see the finished code on GitHub](https://github.com/writer/framework-tutorials/tree/main/release-notes-generator/end) or in `framework-tutorials/release-notes-generator/end` in the `tutorials` repo you cloned at the beginning of the tutorial. ## Deploying the application