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

This commit is contained in:
camperbot
2021-11-02 08:09:55 -07:00
committed by GitHub
parent ade47bfc2b
commit 12a0ce697a
2 changed files with 3 additions and 2 deletions

View File

@ -49,13 +49,14 @@ assert(/processed\s*=\s*processArg\(\s*7\s*\)/.test(code));
```js
// Setup
var processed = 0;
let processed = 0;
function processArg(num) {
return (num + 3) / 5;
}
// Only change code below this line
```
# --solutions--