Skip to content

Commit d0678ca

Browse files
committed
Change description
1 parent 18d72ab commit d0678ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![tests](https://github.com/jayqi/reprexlite/actions/workflows/tests.yml/badge.svg?branch=main)](https://github.com/jayqi/reprexlite/actions/workflows/tests.yml?query=workflow%3Atests+branch%3Amain)
44

5-
Code examples to find the root directory of your project based on different criteria. All examples return a [`pathlib.Path`](https://docs.python.org/3/library/pathlib.html) object. This can be useful in projects where you are reading or writing data to directories inside your project directory.
5+
Code examples to find the root directory of your project in different ways. All examples return a [`pathlib.Path`](https://docs.python.org/3/library/pathlib.html) object. This can be useful in projects where you are reading or writing data to directories inside your project directory.
66

77
All code in this repository is licensed under the [MIT No Attribution (MIT-0) License](./LICENSE) and can be used without attribution.
88

@@ -130,4 +130,4 @@ def proj_root_from_env_var() -> Path:
130130
if not proj_root:
131131
raise RuntimeError("PROJ_ROOT environment variable is not set.")
132132
return Path(proj_root)
133-
```
133+
```

0 commit comments

Comments
 (0)