From 821ca07e0bf46550626b0ff80991dc8faf641a17 Mon Sep 17 00:00:00 2001 From: "Tristan B. Kildaire" Date: Wed, 9 Jan 2019 11:16:09 +0200 Subject: [PATCH] Spelling fixes for address.go --- src/address/address.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/address/address.go b/src/address/address.go index 5c13257b..4fbae243 100644 --- a/src/address/address.go +++ b/src/address/address.go @@ -9,9 +9,9 @@ type Address [16]byte type Subnet [8]byte // address_prefix is the prefix used for all addresses and subnets in the network. -// The current implementation requires this to be a muliple of 8 bits + 7 bits. +// The current implementation requires this to be a multiple of 8 bits + 7 bits. // The 8th bit of the last byte is used to signal nodes (0) or /64 prefixes (1). -// Nodes that configure this differently will be unable to communicate with eachother, though routing and the DHT machinery *should* still work. +// Nodes that configure this differently will be unable to communicate with each other, though routing and the DHT machinery *should* still work. func GetPrefix() [1]byte { return [...]byte{0x02} }