Skip to content

Commit 018bffc

Browse files
committed
Fix typo.
1 parent e652501 commit 018bffc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ permissions = fsutil.get_permissions(path)
449449
#### `get_unique_name`
450450

451451
```python
452-
# Get a unique name for a directory/file ath the given directory path.
452+
# Get a unique name for a directory/file at the given directory path.
453453
unique_name = fsutil.get_unique_name(path, prefix="", suffix="", extension="", separator="-")
454454
```
455455

fsutil/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -825,7 +825,7 @@ def get_unique_name(
825825
separator: str = "-",
826826
) -> str:
827827
"""
828-
Get a unique name for a directory/file ath the given directory path.
828+
Get a unique name for a directory/file at the given directory path.
829829
"""
830830
path = _get_path(path)
831831
assert_dir(path)

0 commit comments

Comments
 (0)