Skip to content

Commit

Permalink
Fix markdown comment (#2144)
Browse files Browse the repository at this point in the history
* Fix markdown comment for linter

From the different options at: https://stackoverflow.com/questions/4823468/comments-in-markdown

* Update markdownlint-cli2-action to 7.0.0
  • Loading branch information
wolf99 authored Nov 3, 2022
1 parent 3b836e5 commit 4a03402
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ jobs:
steps:
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8

- uses: DavidAnson/markdownlint-cli2-action@744f913a124058ee903768d3adb92a4847e5d132
- uses: DavidAnson/markdownlint-cli2-action@e3969ef4ed874458f4b66d4631f78fff7717012c
with:
globs: |
**/*.md
Expand Down
2 changes: 1 addition & 1 deletion exercises/affine-cipher/description.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The affine cipher is a type of monoalphabetic substitution cipher.
Each character is mapped to its numeric equivalent, encrypted with a mathematical function and then converted to the letter relating to its new numeric value.
Although all monoalphabetic ciphers are weak, the affine cipher is much stronger than the atbash cipher, because it has many more keys.

[comment]: # ( monoalphabetic as spelled by Merriam-Webster, compare to polyalphabetic )
[//]: # ( monoalphabetic as spelled by Merriam-Webster, compare to polyalphabetic )

## Encryption

Expand Down

0 comments on commit 4a03402

Please sign in to comment.