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 9c53fa6ad9)

Co-authored-by: Miguel Ángel García <magmax@users.noreply.github.com>
This commit is contained in:
Miss Islington (bot) 2018-09-17 23:27:27 -07:00 committed by Yury Selivanov
parent 9a89fd6884
commit ee2ff1a335
1 changed files with 1 additions and 1 deletions

View File

@ -232,7 +232,7 @@ Running Tasks Concurrently
factorial("A", 2),
factorial("B", 3),
factorial("C", 4),
))
)
asyncio.run(main())