Skip to content

Commit 7575271

Browse files
lwasserucodery
andcommitted
Fix: edits from @ucodery
Co-authored-by: Jeremy Paige <ucodery@gmail.com> Update tutorials/1-installable-code.md Co-authored-by: Jeremy Paige <ucodery@gmail.com> Update tutorials/1-installable-code.md Co-authored-by: Jeremy Paige <ucodery@gmail.com> Update tutorials/1-installable-code.md Co-authored-by: Jeremy Paige <ucodery@gmail.com>
1 parent 60b4c9c commit 7575271

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

tutorials/1-installable-code.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -290,9 +290,9 @@ Tables can contain variables within them defined by an variable name and
290290
an `=` sign. For
291291
instance, a `build-system` table most often holds 2 variables:
292292

293-
1. `requires = `, which tells a build tool what tools it needs to install prior to building your package. in this case is
293+
1. `requires = `, which tells a build tool what tools it needs to install prior to building your package. In this case
294294
[hatchling](https://pypi.org/project/hatchling/)
295-
2. `build-backend` is used to define specific build-backend name, (in this example we are using `hatchling.build`).
295+
2. `build-backend = `, which is used to define the specific build-backend name, (in this example we are using `hatchling.build`).
296296

297297
TOML organizes data structures, defining relationships within a configuration
298298
file. You will learn more about the `pyproject.toml` format in the
@@ -402,8 +402,7 @@ Once you have installed your package, you can view it in your current
402402
environment. If you are using `venv` or `conda`, `pip` list will allow you
403403
to see your current package installations.
404404
405-
Note that because pyospackage is installed in editable mode (`-e`) pip will show you the past to where you package installation's code
406-
is.
405+
Note that because pyospackage is installed in editable mode (`-e`) pip will show you the directory path to your project's code
407406
408407
```bash
409408
$ pip list

0 commit comments

Comments
 (0)