From 4a034023f95b91c15eeb8323a3ebb0d0891a2f0b Mon Sep 17 00:00:00 2001 From: wolf99 <281700+wolf99@users.noreply.github.com> Date: Thu, 3 Nov 2022 13:34:02 +0000 Subject: [PATCH] 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 --- .github/workflows/ci.yml | 2 +- exercises/affine-cipher/description.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 87fc0a4e31..890ea805df 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 diff --git a/exercises/affine-cipher/description.md b/exercises/affine-cipher/description.md index 1c8ae11162..7cb3c68ffa 100644 --- a/exercises/affine-cipher/description.md +++ b/exercises/affine-cipher/description.md @@ -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