Skip to content

Commit 81f569a

Browse files
committed
chore: comment
1 parent b5745ed commit 81f569a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Std/Internal/Async/DNS.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ namespace DNS
1818
open Std.Net
1919

2020
/--
21-
Asynchronously resolves a hostname and service to a list of socket addresses.
21+
Asynchronously resolves a hostname and service to an array of socket addresses.Asynchronously resolves a hostname and service to a list of socket addresses.
2222
-/
2323
@[inline]
2424
def getAddrInfo (host : String) (service : String) : IO (AsyncTask (Array SocketAddress)) :=

src/Std/Internal/UV/DNS.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ namespace DNS
1717
open Std.Net
1818

1919
/--
20-
Asynchronously resolves a hostname and service to a list of socket addresses.
20+
Asynchronously resolves a hostname and service to an array of socket addresses.
2121
-/
2222
@[extern "lean_uv_dns_get_info"]
2323
opaque getAddrInfo (host : @& String) (service : @& String) : IO (IO.Promise (Except IO.Error (Array SocketAddress)))

0 commit comments

Comments
 (0)