From 5557880eed6ff373f1299a094455232f1d70c8f6 Mon Sep 17 00:00:00 2001 From: Steven Allen Date: Thu, 25 Oct 2018 09:33:57 -0700 Subject: [PATCH] fix grammer in option comment --- pubsub.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pubsub.go b/pubsub.go index 5fd5119..2d137ac 100644 --- a/pubsub.go +++ b/pubsub.go @@ -236,8 +236,8 @@ func WithMessageAuthor(author peer.ID) Option { // WithStrictSignatureVerification enforces message signing. If set, unsigned // messages will be discarded. // -// This currently defaults to false but as we transition to signing by default -// but will eventually default to true. +// This currently defaults to false but, as we transition to signing by default, +// will eventually default to true. func WithStrictSignatureVerification(required bool) Option { return func(p *PubSub) error { p.signStrict = required