From 5d3a45d970000e85c4948bfbd1eb660fa3551fbc Mon Sep 17 00:00:00 2001 From: TobiasNx <61879957+TobiasNx@users.noreply.github.com> Date: Mon, 7 Oct 2024 15:08:50 +0200 Subject: [PATCH] Update Flux-User-Guide.md --- docs/flux/Flux-User-Guide.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/flux/Flux-User-Guide.md b/docs/flux/Flux-User-Guide.md index 1cf092d..9f33ba8 100644 --- a/docs/flux/Flux-User-Guide.md +++ b/docs/flux/Flux-User-Guide.md @@ -96,11 +96,11 @@ To learn about the available options of a command, execute Flux without argument To some commands the entire environment can be given as an argument. This is done with the `*` character: `fix("tranformation.fix", *)`. In this case Fix gains access to all variable assignments made in Flux. -(See also [[Fix-User-Guide#parameters-to-Fix-definitions]]). +(See also [Addressing Pieces of Data: FIX-Path and the record structure in FIX ](Fix-User-Guide.html#addressing-pieces-of-data-fix-path-and-the-record-structure-in-fix)). Note that unlike shell pipes, the data flowing between Flux commands is _typed_. This means that only commands with matching signatures can be combined. Commands expect a certain input and provide a certain output like: `StreamReceiver, `Object`, `Reader` and others. -To lookup the signatures, again: execute Flux without arguments or see: [[Fix-User-Guide#parameters-to-Fix-definitions]]). It will list all available commands, including signatures. Or simply have a look at the [list of available FLUX commands.](flux-commands.html) +To lookup the signatures, again: execute Flux without arguments. It will list all available commands, including signatures. Or simply have a look at the [list of available FLUX commands in this documentation.](flux-commands.html) ### Variables Variables are always Strings and can be concatenated with the `+` operator. Escape sequences follow the Java String conventions: `\n`=line break, `\t`=tab, `\\`=\, `\u0024`=unicode character, etc.