Skip to content

Commit f196715

Browse files
committed
Rename doc/ to docs/
which seems more consistent with "tests/"
1 parent d108e7d commit f196715

5 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ It does so by supporting widely used readable conventions such as `array of dtyp
1616

1717
## Installation & getting started
1818

19-
Please refer to the [user guide](doc/user_guide.md) to get started with docstub.
19+
Please refer to the [user guide](docs/user_guide.md) to get started with docstub.
2020

2121

2222
## Contributing
File renamed without changes.
File renamed without changes.
File renamed without changes.
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Test documentation in doc/."""
1+
"""Test documentation in docs/."""
22

33
import re
44
from pathlib import Path
@@ -14,7 +14,7 @@
1414

1515
def test_user_guide_example(tmp_path):
1616
# Load user guide
17-
md_file = PROJECT_ROOT / "doc/user_guide.md"
17+
md_file = PROJECT_ROOT / "docs/user_guide.md"
1818
with md_file.open("r") as io:
1919
md_content = io.read()
2020

@@ -65,7 +65,7 @@ def test_command_line_reference(command, name):
6565
{command.get_help(ctx)}
6666
```
6767
""".strip()
68-
md_file = PROJECT_ROOT / "doc/command_line.md"
68+
md_file = PROJECT_ROOT / "docs/command_line.md"
6969
with md_file.open("r") as io:
7070
md_content = io.read()
7171

0 commit comments

Comments
 (0)