Skip to content

Commit dbe6bb6

Browse files
yahma25bumkeyy
andauthored
Update docs/playground/ko/TypeScript/Type Primitives/Tuples.ts
Co-authored-by: Kibeom Kwon <[email protected]>
1 parent 3b3af23 commit dbe6bb6

File tree

1 file changed

+1
-1
lines changed
  • docs/playground/ko/TypeScript/Type Primitives

1 file changed

+1
-1
lines changed

docs/playground/ko/TypeScript/Type Primitives/Tuples.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const passingResponse: [string, number] = ["{}", 200];
1818
// 배열 ( (string | number)[] )과 튜플 ( [string, number] )의
1919
// 차이점을 볼 수 있습니다.
2020

21-
// 하나의 배열로서, 순서는 중요하지 않아서
21+
// 배열의 순서가 중요하지 않을 때,
2222
// 모든 인덱스에 있는 요소는 문자열 또는 숫자가 될 수 있습니다.
2323
// 튜플에서 순서와 길이는 보장됩니다.
2424

0 commit comments

Comments
 (0)