Skip to content

Commit 4a03402

Browse files
authored
Fix markdown comment (#2144)
* 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
1 parent 3b836e5 commit 4a03402

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ jobs:
125125
steps:
126126
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
127127

128-
- uses: DavidAnson/markdownlint-cli2-action@744f913a124058ee903768d3adb92a4847e5d132
128+
- uses: DavidAnson/markdownlint-cli2-action@e3969ef4ed874458f4b66d4631f78fff7717012c
129129
with:
130130
globs: |
131131
**/*.md

exercises/affine-cipher/description.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The affine cipher is a type of monoalphabetic substitution cipher.
66
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.
77
Although all monoalphabetic ciphers are weak, the affine cipher is much stronger than the atbash cipher, because it has many more keys.
88

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

1111
## Encryption
1212

0 commit comments

Comments
 (0)