Fix 'our' to 'your' typo (#5303)

This commit is contained in:
Charlie Marsh 2023-06-22 11:58:24 -04:00 committed by GitHub
parent 96ecfae1c5
commit 3238a6ef1f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ def sum_even_numbers(numbers: List[int]) -> int:
return sum(num for num in numbers if num % 2 == 0)
```
To start, we'll install Ruff through PyPI (or with our [preferred package manager](installation.md)):
To start, we'll install Ruff through PyPI (or with your [preferred package manager](installation.md)):
```shell
> pip install ruff