DOC - Fix syntax for local directory installation (#9193)

## Summary

This is a minor fix as the command in
https://docs.astral.sh/uv/pip/packages/#installing-a-package to install
projects in editable mode from local directories results in the
following error:

```
error: Failed to parse: `@`
  Caused by: Expected package name starting with an alphanumeric character, found `@`
```

This PR adds the missing `"`

## Test Plan

<!-- How was it tested? -->
Using the fixed syntax here does not result in the above error, and
packages are correctly installed 
This commit is contained in:
Tania Allard 2024-11-18 13:31:01 +00:00 committed by GitHub
parent a07d5a1d18
commit de74dac6e6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ $ uv pip install -e .
To install a project in another directory as an editable package:
```console
$ uv pip install -e ruff @ ./project/ruff
$ uv pip install -e "ruff @ ./project/ruff"
```
## Installing packages from files