From 4f96b599652f0c3cf5a9d58236744e6c1cf9d0e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Sun, 29 Sep 2024 21:18:01 +0200 Subject: [PATCH 1/2] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20Fix=20typo=20in=20`pro?= =?UTF-8?q?jects.md`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/concepts/projects.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/concepts/projects.md b/docs/concepts/projects.md index fe24109317e0a..2ef29bf03d501 100644 --- a/docs/concepts/projects.md +++ b/docs/concepts/projects.md @@ -165,7 +165,7 @@ example-lib └── __init__.py ``` -When creating a library, uv defines a build system and places the source code in placed in a `src` +When creating a library, uv defines a build system and places the source code in a `src` directory. These changes ensure that the library is isolated from any `python` invocations in the project root and that distributed library code is well separated from the rest of the project source code. The project includes a package at `src/example_lib` that will be built and installed into the From ea42601ec48876c64cf6b517599faf2b9e71a9d7 Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Sun, 29 Sep 2024 15:39:55 -0400 Subject: [PATCH 2/2] Run Prettier --- docs/concepts/projects.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/concepts/projects.md b/docs/concepts/projects.md index 2ef29bf03d501..f9f0d09625918 100644 --- a/docs/concepts/projects.md +++ b/docs/concepts/projects.md @@ -165,11 +165,11 @@ example-lib └── __init__.py ``` -When creating a library, uv defines a build system and places the source code in a `src` -directory. These changes ensure that the library is isolated from any `python` invocations in the -project root and that distributed library code is well separated from the rest of the project source -code. The project includes a package at `src/example_lib` that will be built and installed into the -project environment. +When creating a library, uv defines a build system and places the source code in a `src` directory. +These changes ensure that the library is isolated from any `python` invocations in the project root +and that distributed library code is well separated from the rest of the project source code. The +project includes a package at `src/example_lib` that will be built and installed into the project +environment. ```toml title="pyproject.toml" [project]