Skip to content

Commit

Permalink
feat(docs): updating spellcheck (#977)
Browse files Browse the repository at this point in the history
Co-authored-by: Joshua Croft <[email protected]>
  • Loading branch information
devjsc and Joshua Croft authored Oct 3, 2024
1 parent 575bb6e commit 90a0887
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion check_spelling.py → .github/spelling/check_spelling.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
spell = SpellChecker()

# Load custom dictionary
custom_dict_path = 'dictionaries/custom_dict.txt'
custom_dict_path = '.github/spelling/known_words_corpus.txt'
with open(custom_dict_path, 'r') as f:
custom_words = set(line.strip().lower() for line in f)

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion .github/workflows/spellcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ jobs:
# Step 4: Run the custom Python spell-checking script
- name: Run spell-check script
run: |
python check_spelling.py || exit 1
python .github/spelling/check_spelling.py || exit 1

0 comments on commit 90a0887

Please sign in to comment.