From de4592f6f157166fe24463d813ac63f93bf2e905 Mon Sep 17 00:00:00 2001 From: Mike Lay Date: Wed, 4 Oct 2023 03:01:51 -0700 Subject: [PATCH] Fix contributing link (#5960) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Fix broken contributor link. As this ultimately links to the actual contributing page, simply redirect to *CONTRIBUTING.md* instead of `#-contributing` The 💙 emoji in the anchor does not actually resolve. Should be `#contributing`. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9aab541214..61a9706896 100644 --- a/README.md +++ b/README.md @@ -106,7 +106,7 @@ Then move into the cloned folder and install the project with `pip`, including t cd haystack && pip install -e '.[dev]' ``` -If you want to contribute to the Haystack repo, check our [Contributor Guidelines](#💙-contributing) first. +If you want to contribute to the Haystack repo, check our [Contributor Guidelines](https://github.com/deepset-ai/haystack/blob/main/CONTRIBUTING.md) first. See the list of [dependencies](https://github.com/deepset-ai/haystack/blob/main/pyproject.toml) to check which ones you want to install (for example, `[all]`, `[dev]`, or other).