fix: correct .htp typo to .hhp in HTMLHelpBuilder epilog#43
fix: correct .htp typo to .hhp in HTMLHelpBuilder epilog#43VedantMadane wants to merge 2 commits into
Conversation
The epilog message incorrectly referred to '.htp' files when it should have said '.hhp' files. The HTML Help Workshop uses .hhp files as project files. Fixes sphinx-doc/sphinx#12308
|
why the index.rst change? |
|
The index.rst change is from a follow-up commit (931a1c7): "fix: replace deprecated keyword index entry with pair to fix CI on Sphinx 9+". |
|
Ah I see, a separate PR has already been made for that https://github.com/sphinx-doc/sphinxcontrib-htmlhelp/pull/54/changes. It looks like this PR a duplicate of #42 and can be closed. |
Summary
This PR fixes a typo in the \HTMLHelpBuilder.epilog\ message.
Problem
The epilog message incorrectly states:
You can now run HTML Help Workshop with the .htp file in %(outdir)s.
However, HTML Help Workshop uses .hhp files as project files, not .htp files.
Fix
Changed .htp to .hhp in the epilog message.
Fixes sphinx-doc/sphinx#12308