From cd755e284c740e308ae071d667b1d62d196353bc Mon Sep 17 00:00:00 2001 From: William Leony Date: Wed, 15 Jul 2026 16:06:42 -0300 Subject: [PATCH] Fix inconsistent code fence language in README.md The checksum example under 'Command execution' was missing the 'bash' language tag on its opening fence, unlike every other shell example in the file, so it didn't get syntax highlighting. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index edf1291d..210e5ed8 100644 --- a/README.md +++ b/README.md @@ -212,7 +212,7 @@ See below for more details on the placeholder syntax. The terminal output of commands run from parallel threads using `-x` will not be interlaced or garbled, so `fd -x` can be used to rudimentarily parallelize a task run over many files. An example of this is calculating the checksum of each individual file within a directory. -``` +``` bash fd -tf -x md5sum > file_checksums.txt ```