File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -1155,8 +1155,9 @@ def get_all_documents(source: Path) -> list[Path]:
1155
1155
1156
1156
EXAMPLES::
1157
1157
1158
+ sage: from pathlib import Path
1158
1159
sage: from sage_docbuild.builders import get_all_documents
1159
- sage: documents = get_all_documents(Path('src/doc'))
1160
+ sage: documents = get_all_documents(Path('sage/ src/doc'))
1160
1161
sage: Path('en/tutorial') in documents
1161
1162
True
1162
1163
"""
@@ -1188,8 +1189,9 @@ def get_all_reference_documents(source: Path) -> list[Path]:
1188
1189
1189
1190
EXAMPLES::
1190
1191
1192
+ sage: from pathlib import Path
1191
1193
sage: from sage_docbuild.builders import get_all_reference_documents
1192
- sage: documents = get_all_reference_documents(Path('src/doc/en'))
1194
+ sage: documents = get_all_reference_documents(Path('sage/ src/doc/en'))
1193
1195
sage: Path('reference/algebras') in documents
1194
1196
True
1195
1197
"""
You can’t perform that action at this time.
0 commit comments