Skip to content

Commit 8f7df90

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

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
@@ -20,7 +20,7 @@ const passingResponse: [string, number] = ["{}", 200];
2020

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

2525
if (passingResponse[1] === 200) {
2626
const localInfo = JSON.parse(passingResponse[0]);

0 commit comments

Comments
 (0)