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

This commit is contained in:
camperbot
2021-05-24 00:42:08 -07:00
committed by GitHub
parent 66c5523909
commit bd69e00480
51 changed files with 225 additions and 197 deletions

View File

@ -21,7 +21,7 @@ dashedName: add-a-hover-effect-to-a-d3-element
`rect` 元素应该有 `bar` class。
```js
assert($('rect').attr('class') == 'bar');
assert($('rect').attr('class').trim().split(/\s+/g).includes('bar'));
```
# --seed--

View File

@ -27,7 +27,7 @@ selection.attr("class", "container");
`div` 元素应该一个 `bar` class。
```js
assert($('div').attr('class') == 'bar');
assert($('div').attr('class').trim().split(/\s+/g).includes('bar'));
```
应该使用 `attr()` 方法。