Skip to content

Commit

Permalink
fix: remove unnecessary comma in all translation (#32892)
Browse files Browse the repository at this point in the history
  • Loading branch information
shenxiang11 committed May 2, 2024
1 parent cbd90f2 commit 614f246
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion questions/03060-easy-unshift/README.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
例えば:

```typescript
type Result = Unshift<[1, 2], 0> // [0, 1, 2,]
type Result = Unshift<[1, 2], 0> // [0, 1, 2]
```
Expand Down
2 changes: 1 addition & 1 deletion questions/03060-easy-unshift/README.ko.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
예시:

```typescript
type Result = Unshift<[1, 2], 0> // [0, 1, 2,]
type Result = Unshift<[1, 2], 0> // [0, 1, 2]
```
Expand Down
2 changes: 1 addition & 1 deletion questions/03060-easy-unshift/README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
例如:

```typescript
type Result = Unshift<[1, 2], 0> // [0, 1, 2,]
type Result = Unshift<[1, 2], 0> // [0, 1, 2]
```
Expand Down

0 comments on commit 614f246

Please sign in to comment.