Skip to content

Commit 7a9700c

Browse files
committed
Fix type in gitignore comment used for cache directory
1 parent dcf34bb commit 7a9700c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/docstub/_cache.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def create_cache(path):
5454

5555
gitignore_path = path / ".gitignore"
5656
gitignore_content = (
57-
"# This file is a cache directory tag automatically created by docstub.\n" "*\n"
57+
"# This file is a cache directory automatically created by docstub.\n" "*\n"
5858
)
5959
if not gitignore_path.is_file():
6060
with open(gitignore_path, "w") as fp:

0 commit comments

Comments
 (0)