Fix clipboard copy for code blocks

This commit is contained in:
Matt Noakes 2023-02-07 15:03:24 -05:00
parent 05957ac9f8
commit 92500fe96a
No known key found for this signature in database
GPG Key ID: 9BE7AB7C0FE5D4F8

@ -300,7 +300,7 @@ commonly misspelled English words quickly with `misspell`. `misspell` is differe
because it doesn't use a custom dictionary. You can run `misspell` locally against all files with:
```bash
find . -type f | xargs ./misspell -i 'aircrafts,devels,invertions' -error
$ find . -type f | xargs ./misspell -i 'aircrafts,devels,invertions' -error
```
Notable `misspell` help options or flags are:
@ -313,7 +313,7 @@ We also run [codespell](https://github.com/codespell-project/codespell) with Git
`codespell` is written in [Python](https://www.python.org/) and you can run it with:
```bash
codespell --ignore-words=codespell.txt
$ codespell --ignore-words=codespell.txt
```
### Benchmark Your Code