Merge 117f2bd36e
into eb248fa81e
commit
69cc7339ba
|
@ -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"
|
||||
```
|
||||
|
||||
:::
|
||||
|
|
Loading…
Reference in New Issue