Skip to content

Commit 988ea12

Browse files
authored
Update task.md
Add corrections to translation.
1 parent 87215a5 commit 988ea12

File tree

1 file changed

+2
-2
lines changed
  • 1-js/02-first-steps/13-switch/1-rewrite-switch-if-else

1 file changed

+2
-2
lines changed

1-js/02-first-steps/13-switch/1-rewrite-switch-if-else/task.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ importância: 5
44

55
# Transforme o "*switch*" num "*if*"
66

7-
Escreva o código empregando `if..else`, que corresponda ao seguinte `switch`:
7+
Escreva o código empregando `if..else` que corresponda ao seguinte `switch`:
88

99
```js
1010
switch (browser) {
@@ -16,7 +16,7 @@ switch (browser) {
1616
case 'Firefox':
1717
case 'Safari':
1818
case 'Opera':
19-
alert( 'Esta bem, também suportamos esse navegador (browser).' );
19+
alert( 'Está bem, também suportamos esse navegador (browser).' );
2020
break;
2121

2222
default:

0 commit comments

Comments
 (0)