Fix syntax error on Asyncio example in doc (GH-9387) (GH-9388)
The `gather` method requires to close the parenthesis, but it is being closed twice.
(cherry picked from commit 9c53fa6ad9cd23fb03867b4a1f74264c426c1772)
Co-authored-by: Miguel Ángel García <magmax@users.noreply.github.com>
diff --git a/Doc/library/asyncio-task.rst b/Doc/library/asyncio-task.rst
index 9ca0dcd..2753998 100644
--- a/Doc/library/asyncio-task.rst
+++ b/Doc/library/asyncio-task.rst
@@ -232,7 +232,7 @@
factorial("A", 2),
factorial("B", 3),
factorial("C", 4),
- ))
+ )
asyncio.run(main())