From 7b1fb5b50bbedd7d2bc01a51d24d90254fe29aa1 Mon Sep 17 00:00:00 2001 From: Yury Fedotov <102987839+yury-fedotov@users.noreply.github.com> Date: Thu, 7 Aug 2025 15:42:50 -0500 Subject: [PATCH] Add missing periods (`.`) to list elements in `Features` docs page (#15138) The [**Features**](https://docs.astral.sh/uv/getting-started/features/) page of docs contains a lot of markdown lists, elements of which end with `.`. For example: image --- Out of tens of list elements, just two are outliers and do not use `.` at the end. So this small PR fixes this little inconsistency :) --- docs/getting-started/features.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/getting-started/features.md b/docs/getting-started/features.md index c78f5f560..dc849c05d 100644 --- a/docs/getting-started/features.md +++ b/docs/getting-started/features.md @@ -22,8 +22,8 @@ See the [guide on installing Python](../guides/install-python.md) to get started Executing standalone Python scripts, e.g., `example.py`. - `uv run`: Run a script. -- `uv add --script`: Add a dependency to a script -- `uv remove --script`: Remove a dependency from a script +- `uv add --script`: Add a dependency to a script. +- `uv remove --script`: Remove a dependency from a script. See the [guide on running scripts](../guides/scripts.md) to get started.