From d5b98fb76c9d668e74049adf585b10c06d812f1e Mon Sep 17 00:00:00 2001 From: Se7en Date: Sat, 18 Jan 2025 02:39:56 +0800 Subject: [PATCH] fix: links in `configuring projects` doc (#10710) ## Summary Fix invalid links in [configuring projects](https://docs.astral.sh/uv/concepts/projects/config/#entry-points) doc. ## Test Plan --- .gitignore | 4 ++++ docs/concepts/projects/config.md | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 0087d3106..708e225fe 100644 --- a/.gitignore +++ b/.gitignore @@ -35,3 +35,7 @@ profile.json # macOS **/.DS_Store + +# IDE +.idea +.vscode diff --git a/docs/concepts/projects/config.md b/docs/concepts/projects/config.md index 6e1f84632..74455c0d4 100644 --- a/docs/concepts/projects/config.md +++ b/docs/concepts/projects/config.md @@ -22,9 +22,9 @@ affects selection of dependency versions (they must support the same Python vers [Entry points](https://packaging.python.org/en/latest/specifications/entry-points/#entry-points) are the official term for an installed package to advertise interfaces. These include: -- [Command line interfaces]() -- [Graphical user interfaces]() -- [Plugin entry points]() +- [Command line interfaces](#command-line-interfaces) +- [Graphical user interfaces](#graphical-user-interfaces) +- [Plugin entry points](#plugin-entry-points) !!! important