Skip to content

Commit 83ba34d

Browse files
committed
wip
1 parent 75fcee1 commit 83ba34d

File tree

1 file changed

+1
-1
lines changed
  • crates/ty_python_semantic/resources/mdtest/type_compendium

1 file changed

+1
-1
lines changed

crates/ty_python_semantic/resources/mdtest/type_compendium/tuple.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ reveal_type(tuple((1, 2))) # revealed: tuple[Literal[1], Literal[2]]
5858
reveal_type(tuple([1])) # revealed: tuple[Unknown | int, ...]
5959

6060
x1: tuple[int, ...] = tuple([1])
61-
reveal_type(x1) # revealed: tuple[int, ...]
61+
reveal_type(x1) # revealed: tuple[int, ...]
6262

6363
# error: [invalid-argument-type]
6464
reveal_type(tuple[int]([1])) # revealed: tuple[int]

0 commit comments

Comments
 (0)