chore(i18n,learn): processed translations (#44777)

This commit is contained in:
camperbot
2022-01-14 23:13:16 +05:30
committed by GitHub
parent f733a49a24
commit e368739827
4 changed files with 230 additions and 6 deletions

View File

@ -57,7 +57,8 @@ assert(
var test = new LinkedList();
test.add('cat');
test.add('dog');
return test.head().next.element === 'dog';
test.add('fish');
return test.head().next.element === 'dog' && test.head().next.next.element === 'fish';
})()
);
```