From 61414df6693d2cf21814c189307010f34c0ea6bf Mon Sep 17 00:00:00 2001 From: MeshCollider Date: Tue, 30 Jan 2018 13:07:26 +1300 Subject: [PATCH] multi: Fix two minor typos --- autopilot/agent.go | 2 +- lnwire/lnwire.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/autopilot/agent.go b/autopilot/agent.go index ba9061cb..adba58c9 100644 --- a/autopilot/agent.go +++ b/autopilot/agent.go @@ -10,7 +10,7 @@ import ( "github.com/roasbeef/btcutil" ) -// Config couples all the items that that an autopilot agent needs to function. +// Config couples all the items that an autopilot agent needs to function. // All items within the struct MUST be populated for the Agent to be able to // carry out its duties. type Config struct { diff --git a/lnwire/lnwire.go b/lnwire/lnwire.go index 10c565ae..1804ccaa 100644 --- a/lnwire/lnwire.go +++ b/lnwire/lnwire.go @@ -31,7 +31,7 @@ type addressType uint8 const ( // noAddr denotes a blank address. An address of this type indicates - // that a node doesn't have any advertise d addresses. + // that a node doesn't have any advertised addresses. noAddr addressType = 0 // tcp4Addr denotes an IPv4 TCP address.