From 93fd8edf0038ae05c80cac324b0bbc31085a1fcf Mon Sep 17 00:00:00 2001 From: Adrian Pohl Date: Thu, 16 Nov 2023 11:30:09 +0100 Subject: [PATCH] Fix mixup in encoder/decoder names --- MF-in-5-min.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MF-in-5-min.md b/MF-in-5-min.md index aacf8ca..b4a2b5d 100644 --- a/MF-in-5-min.md +++ b/MF-in-5-min.md @@ -57,7 +57,7 @@ $ cat yaml2json.flux ``` [Example in Playground](https://metafacture.org/playground/?flux=inputFile%0A%7C+open-file%0A%7C+as-records%0A%7C+decode-yaml%0A%7C+encode-json%0A%7C+print%0A%3B&data=hello%3A+world) -We added two modules for decoding and encoding the data: `decode-json` and `encode-yaml`. +We added two modules for decoding and encoding the data: `decode-yaml` and `encode-json`. Metafacture provides decoders and encoders for many formats. We also used the `as-records` module instead of `as-lines` to read multi-line metadata statements and not each line separately.