Skip to content

Commit 53752d2

Browse files
[3.13] Fix typo in template_replace() test helper docstring (GH-132094) (#132095)
Fix typo in `template_replace()` test helper docstring (GH-132094) (cherry picked from commit ac3a7bf) Co-authored-by: Victorien <[email protected]>
1 parent 900dc2b commit 53752d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_typing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -809,7 +809,7 @@ def template_replace(templates: list[str], replacements: dict[str, list[str]]) -
809809
810810
Example 1: Suppose that:
811811
templates = ["dog_breed are awesome", "dog_breed are cool"]
812-
replacements = ["dog_breed": ["Huskies", "Beagles"]]
812+
replacements = {"dog_breed": ["Huskies", "Beagles"]}
813813
Then we would return:
814814
[
815815
("Huskies are awesome", "Huskies are cool"),

0 commit comments

Comments
 (0)