[3.12] Fix typo in template_replace() test helper docstring (GH-132094) (#132096)

Fix typo in `template_replace()` test helper docstring (GH-132094)
(cherry picked from commit ac3a7bfecc)

Co-authored-by: Victorien <65306057+Viicos@users.noreply.github.com>
This commit is contained in:
Miss Islington (bot) 2025-04-04 20:04:01 +02:00 committed by GitHub
parent 3d3e7b0ada
commit 1d8cd48f26
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -611,7 +611,7 @@ def template_replace(templates: list[str], replacements: dict[str, list[str]]) -
Example 1: Suppose that:
templates = ["dog_breed are awesome", "dog_breed are cool"]
replacements = ["dog_breed": ["Huskies", "Beagles"]]
replacements = {"dog_breed": ["Huskies", "Beagles"]}
Then we would return:
[
("Huskies are awesome", "Huskies are cool"),