From 665650fe2e43ded097f1f2d492a7b2a39d2ba51e Mon Sep 17 00:00:00 2001 From: Sofie Van Landeghem Date: Fri, 23 Aug 2024 12:13:36 +0200 Subject: [PATCH] Two small typo fixes (#6500) ## Summary Two small typo fixes: one in the documentation and one in a comment in the source code I happened to come across. --- crates/pep508-rs/src/marker/parse.rs | 2 +- docs/guides/integration/fastapi.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/pep508-rs/src/marker/parse.rs b/crates/pep508-rs/src/marker/parse.rs index 91712cb52..bf5b7a410 100644 --- a/crates/pep508-rs/src/marker/parse.rs +++ b/crates/pep508-rs/src/marker/parse.rs @@ -130,7 +130,7 @@ pub(crate) fn parse_marker_key_op_value( cursor.eat_whitespace(); let r_value = parse_marker_value(cursor)?; - // Convert a ` ` expression into it's + // Convert a ` ` expression into its // typed equivalent. let expr = match l_value { // Either: diff --git a/docs/guides/integration/fastapi.md b/docs/guides/integration/fastapi.md index 7b31c29d0..abacc18d3 100644 --- a/docs/guides/integration/fastapi.md +++ b/docs/guides/integration/fastapi.md @@ -1,8 +1,8 @@ # Using uv with FastAPI -[FastAPI](https://github.com/fastapi/fastapi) is modern, high-performance Python web framework. You -can use uv to manage your FastAPI project, including installing dependencies, managing environments, -running FastAPI applications, and more. +[FastAPI](https://github.com/fastapi/fastapi) is a modern, high-performance Python web framework. +You can use uv to manage your FastAPI project, including installing dependencies, managing +environments, running FastAPI applications, and more. !!! note