Skip to content

Commit 70f3a96

Browse files
authored
Update groovy.pt.md
Update fix to snippet to match change made to groovy.md
1 parent 1511847 commit 70f3a96

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/basic_training/groovy.pt.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -254,8 +254,8 @@ else {
254254
O ramo `else` é opcional. Além disso, as chaves são opcionais quando a ramificação define apenas uma única instrução.
255255

256256
```groovy linenums="1"
257-
x = 1
258-
if (x < 10)
257+
x = 11
258+
if (x > 10)
259259
println 'Olá'
260260
```
261261

0 commit comments

Comments
 (0)