File tree 2 files changed +8
-6
lines changed
2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -294,14 +294,16 @@ def main():
294
294
help = 'number of jobs used by sphinx-build' )
295
295
argparser .add_argument ('--no-api' ,
296
296
default = False ,
297
- help = 'ommit api and autosummary' ,
297
+ help = 'omit api and autosummary' ,
298
298
action = 'store_true' )
299
299
argparser .add_argument ('--single' ,
300
300
metavar = 'FILENAME' ,
301
301
type = str ,
302
302
default = None ,
303
- help = ('filename of section or method name to '
304
- 'compile, e.g. "indexing", "DataFrame.join"' ))
303
+ help = ('filename (relative to the "source" folder)'
304
+ ' of section or method name to compile, e.g. '
305
+ '"development/contributing.rst",'
306
+ ' "ecosystem.rst", "pandas.DataFrame.join"' ))
305
307
argparser .add_argument ('--python-path' ,
306
308
type = str ,
307
309
default = os .path .dirname (DOC_PATH ),
Original file line number Diff line number Diff line change @@ -428,10 +428,10 @@ reducing the turn-around time for checking your changes.
428
428
python make.py clean
429
429
python make.py --no-api
430
430
431
- # compile the docs with only a single
432
- # section, that which is in indexing .rst
431
+ # compile the docs with only a single section, relative to the "source" folder.
432
+ # For example, compiling only this guide (docs/source/development/contributing .rst)
433
433
python make.py clean
434
- python make.py --single indexing
434
+ python make.py --single development/contributing.rst
435
435
436
436
# compile the reference docs for a single function
437
437
python make.py clean
You can’t perform that action at this time.
0 commit comments