Skip to content

Commit bf41982

Browse files
authored
Update Flux-User-Guide.md
1 parent ca9ec18 commit bf41982

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

docs/flux/Flux-User-Guide.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -77,14 +77,14 @@ Semicolons `;` mark the end of a variable assignment or flow definition.
7777

7878
A FLUX contains multiple command-moduls that are doing specific things. E.g.:
7979

80-
```C
81-
"file/path.mrc"
82-
| open-file -> This opens the file of the provided `file/path.mrc`-path.
83-
| as-lines - This reads the file by lines.
84-
| decode-marc21 -> This decodes the data as binary marc21 into an internal format.
85-
| fix(FLUX_DIR + "fix-marc21.fix") -> This executes the provided Fix-transformation.
86-
| encode-json(prettyPrinting="true") -> This encodes the transformed data as JSON-Format.
87-
| write("stdout") -> This writes the Json-Data to standard output.
80+
```c
81+
"file/path.mrc" //-> Provides incoming sTring e.g. filepath.
82+
| open-file //-> This opens the file of the provided `file/path.mrc`-path.
83+
| as-lines //-> This reads the file by lines.
84+
| decode-marc21 //-> This decodes the data as binary marc21 into an internal format.
85+
| fix(FLUX_DIR + "fix-marc21.fix") //-> This executes the provided Fix-transformation.
86+
| encode-json(prettyPrinting="true") //-> This encodes the transformed data as JSON-Format.
87+
| write("stdout") //-> This writes the Json-Data to standard output.
8888
;
8989
``````
9090

0 commit comments

Comments
 (0)