Fix typo in README.md (singer -> single)

This commit is contained in:
Nate Eagleson 2022-05-03 21:45:55 -04:00 committed by GitHub
parent c2b96736bd
commit c136e0f36f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -395,7 +395,7 @@ grep 'A\|B\|C\|D'
grep 'A.*B' grep 'A.*B'
``` ```
##### Regex any singer character (e.g. ACB or AEB) ##### Regex any single character (e.g. ACB or AEB)
```bash ```bash
grep 'A.B' grep 'A.B'
``` ```