From 99652e23ccfae2a174f2958e335c379da005ad4e Mon Sep 17 00:00:00 2001 From: Juraj Kapsz Date: Sat, 11 Jul 2026 21:47:05 +0200 Subject: [PATCH] Fix link accessibility in part4b This is a follow-up to the accessibility improvements in PR #2289. This PR replaces a generic `here` link with descriptive link text. Descriptive link text is an important accessibility practice, particularly for screen reader users who may navigate pages by listing links, where generic text such as `here` provides little context. There are additional instances of generic link text (such as `here`) in the course material. I chose to keep this PR limited to a single change to make it easy to review and to avoid unnecessary merge conflicts. --- src/content/4/en/part4b.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/4/en/part4b.md b/src/content/4/en/part4b.md index 6da9ce905dc..798f4d8a83d 100644 --- a/src/content/4/en/part4b.md +++ b/src/content/4/en/part4b.md @@ -930,7 +930,7 @@ Full stack development is extremely hard, that is why I will use all the - I will write lots of _console.log_ statements to make sure I understand how the code and the tests behave and to help pinpoint problems - If my code does not work, I will not write more code. Instead, I start deleting the code until it works or just return to a state when everything is still working - If a test does not pass, I make sure that the tested functionality for sure works in the application -- When I ask for help in the course Discord channel or elsewhere I formulate my questions properly, see [here](/en/part0/general_info#how-to-get-help-in-discord) how to ask for help +- When I ask for help in the course Discord channel or elsewhere I formulate my questions properly, see [how to ask for help](/en/part0/general_info#how-to-get-help-in-discord)