From 3238a6ef1fcc78be9172dfc866051bcb1471cede Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Thu, 22 Jun 2023 11:58:24 -0400 Subject: [PATCH] Fix 'our' to 'your' typo (#5303) --- docs/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial.md b/docs/tutorial.md index 3491519febf5c..e9f6592061523 100644 --- a/docs/tutorial.md +++ b/docs/tutorial.md @@ -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