chore(i18n,curriculum): update translations (#43132)

This commit is contained in:
camperbot
2021-08-07 00:02:45 +09:00
committed by GitHub
parent 62f67e96a4
commit d683955e5a
10 changed files with 62 additions and 62 deletions

View File

@ -20,7 +20,7 @@ function findGreater(a, b) {
return "a is greater";
}
else {
return "b is greater";
return "b is greater or equal";
}
}
```
@ -29,7 +29,7 @@ function findGreater(a, b) {
```js
function findGreater(a, b) {
return a > b ? "a is greater" : "b is greater";
return a > b ? "a is greater" : "b is greater or equal";
}
```