Skip to content

Commit 8a7f231

Browse files
committed
fix spellcheck
1 parent 7a099bc commit 8a7f231

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/spellcheck.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: |
2222
python -m pip install --upgrade setuptools
2323
python -m pip install -r Resources/doc/requirements.txt
24-
- name: Run spell check
24+
- name: Run spell check
2525
run: |
2626
make -C Resources/doc/ spelling
2727
if [[ -s "Resources/doc/_build/spelling/output.txt" ]]; then echo "\nSpelling errors found\n" && cat "Resources/doc/_build/spelling/output.txt"; fi

Resources/doc/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -154,5 +154,5 @@ doctest:
154154
"results in $(BUILDDIR)/doctest/output.txt."
155155

156156
spelling:
157-
$(SPHINXBUILD) -b spelling $(ALLSPHINXOPTS) $(BUILDDIR)/spelling
157+
$(SPHINXBUILD) -b spelling $(ALLSPHINXOPTS) -w $(BUILDDIR)/spelling/output.txt $(BUILDDIR)/spelling
158158
@echo "Spelling report generated in $(BUILDDIR)/spelling/output.txt"

0 commit comments

Comments
 (0)