From e5c9fa86899b4e088c0545d13cf18a2d4b669cfe Mon Sep 17 00:00:00 2001 From: TobiasNx <61879957+TobiasNx@users.noreply.github.com> Date: Mon, 7 Oct 2024 16:01:28 +0200 Subject: [PATCH] Update Fix-User-Guide.md --- docs/fix/Fix-User-Guide.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/fix/Fix-User-Guide.md b/docs/fix/Fix-User-Guide.md index fdb089f..c5b84b2 100644 --- a/docs/fix/Fix-User-Guide.md +++ b/docs/fix/Fix-User-Guide.md @@ -13,15 +13,15 @@ This document provides an introduction to the Metafacture Fix language (short: M Metafacture Fix is a transformation module that can be used in a [Flux Workflow](../flux/Flux-User-Guide.html), for this you have to use this in your pipeline: Flux-Example: -```perl - infile - | open-file - | as-lines - | decode-marc21 - | fix(FLUX_DIR + "fixFile.fix") - | encode-json - | print - ; +```java +infile +| open-file +| as-lines +| decode-marc21 +| fix(FLUX_DIR + "fixFile.fix") +| encode-json +| print +; ``` - when using the FLUX: