Merge pull request #49 from status-im/Swader-patch-1

Fix typo in doc string
This commit is contained in:
Eugene Kabanov 2019-08-16 17:50:51 +03:00 committed by GitHub
commit faea86d883
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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: