Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions configuration/transformations.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ Examples:
::: tab DSL

```java
DSL(|"String has " + input.length + " characters")
|"String has " + input.length + " characters"
```

:::
Expand All @@ -156,23 +156,23 @@ 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"
```

:::

::: tab JRuby

```ruby
RB(|"String has #{input.length} characters")
|"String has #{input.length} characters"
```

:::

::: tab Groovy

```groovy
GROOVY(|"String has ${input.length()} characters")
|"String has ${input.length()} characters"
```

:::
Expand Down