From 21178c3bac935411800a399f249118335670d427 Mon Sep 17 00:00:00 2001 From: Daniel Morandini Date: Thu, 7 Feb 2019 12:21:24 +0100 Subject: [PATCH] Fix documentation. Close #34 --- store/policies.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/store/policies.go b/store/policies.go index bf83116..728caec 100644 --- a/store/policies.go +++ b/store/policies.go @@ -112,8 +112,8 @@ func (p *BlockPolicy) Accept(id, address string) bool { } // ReservedPolicy is a Policy implementation. It is used to reserve a source -// to be used only for connections to a defined address, and those connections -// will not be assigned to any other source. +// to be used only for connections to a defined list of addresses, and those +// connections will not be assigned to any other source. type ReservedPolicy struct { basePolicy SourceID string `json:"reserved_source_id"`