Fix `wait(future)` declaration signature. (#537)

This commit is contained in:
Eugene Kabanov 2024-04-24 03:16:23 +03:00 committed by GitHub
parent 0f0ed1d654
commit bb96f02ae8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -1866,7 +1866,7 @@ proc wait*(fut: InternalRaisesFuture, timeout = InfiniteDuration): auto =
waitImpl(fut, retFuture, timeout)
proc wait*(fut: InternalRaisesFuture, deadline: InternalRaisesFuture): auto =
proc wait*(fut: InternalRaisesFuture, deadline: SomeFuture): auto =
type
T = type(fut).T
E = type(fut).E