From d7f8b9754121bb3371b60d487f46a71fdf855e57 Mon Sep 17 00:00:00 2001 From: Ritesh Chauhan <155845254+ritesh-chauhan0x1@users.noreply.github.com> Date: Sat, 1 Nov 2025 03:39:35 +0530 Subject: [PATCH] docs: fix broken link in contributing guide (#4973) ## Summary This PR fixes a broken self-referencing link in the contributing documentation. ## Changes - Removed the phrase 'Following the [development setup](#development-workflow) instructions above' from the Development workflow section - The link referenced a non-existent section and the phrase didn't make logical sense in context ## Before The text referenced 'development setup instructions above' but: 1. No section called 'development setup' exists 2. There were no instructions 'above' that point 3. The link pointed to the same section it was in ## After Simplified to: 'Ensure your change is free of lint warnings and test failures.' ## Type Documentation fix I have read the CLA Document and I hereby sign the CLA Co-authored-by: Ritesh Chauhan --- docs/contributing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contributing.md b/docs/contributing.md index 155f9f1e..596afe3b 100644 --- a/docs/contributing.md +++ b/docs/contributing.md @@ -12,7 +12,7 @@ If you want to add a new feature or change the behavior of an existing one, plea - Create a _topic branch_ from `main` - e.g. `feat/interactive-prompt`. - Keep your changes focused. Multiple unrelated fixes should be opened as separate PRs. -- Following the [development setup](#development-workflow) instructions above, ensure your change is free of lint warnings and test failures. +- Ensure your change is free of lint warnings and test failures. ### Writing high-impact code changes