Fix typo in doc string

This typo was breaking nim's doc generator.
This commit is contained in:
Bruno Škvorc 2019-08-16 12:27:27 +02:00 committed by GitHub
parent 066d36163d
commit bb525ace25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -620,7 +620,7 @@ proc isInterfaceLocalMulticast*(address: TransportAddress): bool =
((address.address_v6[1] and 0x0F'u8) == 0x01'u8)
proc isLinkLocalMulticast*(address: TransportAddress): bool =
## Returns ``true`` if ``address` is link local multicast address.
## Returns ``true`` if ``address`` is link local multicast address.
##
## ``IPv4``: 224.0.0.0 - 224.0.0.255
if address.family == AddressFamily.IPv4: