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

This commit is contained in:
camperbot
2022-01-04 19:45:51 +05:30
committed by GitHub
parent e837e8a11e
commit 4d12f4ff57
3 changed files with 6 additions and 6 deletions

View File

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

View File

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

View File

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