Two small typo fixes (#6500)

<!--
Thank you for contributing to uv! To help us out with reviewing, please
consider the following:

- Does this pull request include a summary of the change? (See below.)
- Does this pull request include a descriptive title?
- Does this pull request include references to any relevant issues?
-->

## Summary

Two small typo fixes: one in the documentation and one in a comment in
the source code I happened to come across.
This commit is contained in:
Sofie Van Landeghem 2024-08-23 12:13:36 +02:00 committed by GitHub
parent d8c41481ec
commit 665650fe2e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View file

@ -130,7 +130,7 @@ pub(crate) fn parse_marker_key_op_value<T: Pep508Url>(
cursor.eat_whitespace();
let r_value = parse_marker_value(cursor)?;
// Convert a `<marker_value> <marker_op> <marker_value>` expression into it's
// Convert a `<marker_value> <marker_op> <marker_value>` expression into its
// typed equivalent.
let expr = match l_value {
// Either:

View file

@ -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