From 117f2bd36ed9be0f1289cc1c867a1fad131f78c1 Mon Sep 17 00:00:00 2001 From: masipila Date: Sat, 16 Nov 2024 20:39:22 +0200 Subject: [PATCH] Remove wrappers from inline transformation examples Signed-off-by: masipila --- configuration/transformations.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configuration/transformations.md b/configuration/transformations.md index 6fe499415d..38503cf121 100644 --- a/configuration/transformations.md +++ b/configuration/transformations.md @@ -145,7 +145,7 @@ Examples: ::: tab DSL ```java -DSL(|"String has " + input.length + " characters") +|"String has " + input.length + " characters" ``` ::: @@ -156,7 +156,7 @@ For the modern JS Scripting, the transformation is `JS(|...)`. For the legacy JS Scripting, the transformation is `NASHORNJS(|...)`. ```javascript -JS(|"String has " + input.length + " characters") +|"String has " + input.length + " characters" ``` ::: @@ -164,7 +164,7 @@ JS(|"String has " + input.length + " characters") ::: tab JRuby ```ruby -RB(|"String has #{input.length} characters") +|"String has #{input.length} characters" ``` ::: @@ -172,7 +172,7 @@ RB(|"String has #{input.length} characters") ::: tab Groovy ```groovy -GROOVY(|"String has ${input.length()} characters") +|"String has ${input.length()} characters" ``` :::