Change both code snippets to use the same test URL (#20647)

This commit is contained in:
Saint
2022-10-25 03:40:57 -04:00
committed by GitHub
parent 4728c52c78
commit daf35c6d1b

View File

@@ -33,7 +33,7 @@
## proc asyncProc(): Future[string] {.async.} =
## var client = newAsyncHttpClient()
## try:
## return await client.getContent("http://example.com")
## return await client.getContent("http://google.com")
## finally:
## client.close()
##