Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
owestphal committed Jul 31, 2023
1 parent bebfaa4 commit c13b611
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/actions/spelling/allow.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ geben
github
https
letzten
Nächste
noch
positiven
Programm
Expand All @@ -20,3 +21,4 @@ standalone
Summe
teilbaren
ubuntu
unfoldings
2 changes: 2 additions & 0 deletions .github/actions/spelling/expect.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,12 @@ fst
GHC
HRefl
hspec
implicits
ints
IOrep
len
Linebreak
Linebreaks
mconcat
mempty
MTT
Expand Down
2 changes: 1 addition & 1 deletion test/TestProperties.hs
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,6 @@ xprop s = xit s . property
fprop :: (HasCallStack, Testable prop) => String -> prop -> Spec
fprop s = fit s . property

-- disable a propertiy for faster testing
-- disable a property for faster testing
xPerfprop :: (HasCallStack, Testable prop) => String -> prop -> Spec

Check failure on line 113 in test/TestProperties.hs

View workflow job for this annotation

GitHub Actions / Check Spelling

`Perfprop` is not a recognized word. (unrecognized-spelling)
xPerfprop s _ = it s $ pendingWith "disabled for faster testing"

Check failure on line 114 in test/TestProperties.hs

View workflow job for this annotation

GitHub Actions / Check Spelling

`Perfprop` is not a recognized word. (unrecognized-spelling)

1 comment on commit c13b611

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@check-spelling-bot Report

🔴 Please review

See the 📜action log for details.

Unrecognized words (3)

chste
overfl
Perfprop

Previously acknowledged words that are now absent Linebreak :arrow_right:
To accept ✔️ these unrecognized words as correct and remove the previously acknowledged and now absent words, run the following commands

... in a clone of the [email protected]:fmidue/IOTasks.git repository
on the fix-spell-checking branch (ℹ️ how do I use this?):

curl -s -S -L 'https://raw.githubusercontent.com/check-spelling/check-spelling/v0.0.21/apply.pl' |
perl - 'https://github.com/fmidue/IOTasks/actions/runs/5716744505/attempts/1'
Available 📚 dictionaries could cover words not in the 📘 dictionary

This includes both expected items (50) from .github/actions/spelling/expect.txt and unrecognized words (3)

Dictionary Entries Covers
cspell:cpp/src/cpp.txt 30216 13
cspell:php/php.txt 2597 4
cspell:python/src/python/python-lib.txt 3873 3
cspell:node/node.txt 1768 3
cspell:mnemonics/src/mnemonics.txt 800 3

Consider adding them using (in .github/workflows/spelling.yml):

      with:
        extra_dictionaries:
          cspell:cpp/src/cpp.txt
          cspell:php/php.txt
          cspell:python/src/python/python-lib.txt
          cspell:node/node.txt
          cspell:mnemonics/src/mnemonics.txt

To stop checking additional dictionaries, add:

      with:
        check_extra_dictionaries: ''
Pattern suggestions ✂️ (2)

You could add these patterns to .github/actions/spelling/patterns.txt:

# Automatically suggested patterns
# hit-count: 28 file-count: 5
# IServiceProvider
\bI(?=(?:[A-Z][a-z]{2,})+\b)

# hit-count: 1 file-count: 1
# Non-English
[a-zA-Z]*[ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýÿĀāŁłŃńŅņŒœŚśŠšŜŝŸŽžź][a-zA-Z]{3}[a-zA-ZÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýÿĀāŁłŃńŅņŒœŚśŠšŜŝŸŽžź]*

Warnings (1)

See the 📜action log for details.

ℹ️ Warnings Count
ℹ️ candidate-pattern 4

See ℹ️ Event descriptions for more information.

If the flagged items are 🤯 false positives

If items relate to a ...

  • binary file (or some other file you wouldn't want to check at all).

    Please add a file path to the excludes.txt file matching the containing file.

    File paths are Perl 5 Regular Expressions - you can test yours before committing to verify it will match your files.

    ^ refers to the file's path from the root of the repository, so ^README\.md$ would exclude README.md (on whichever branch you're using).

  • well-formed pattern.

    If you can write a pattern that would match it,
    try adding it to the patterns.txt file.

    Patterns are Perl 5 Regular Expressions - you can test yours before committing to verify it will match your lines.

    Note that patterns can't match multiline strings.

Please sign in to comment.