From 4f385d2fea535e4d608ee3d421e63b6f59eef7bf Mon Sep 17 00:00:00 2001 From: Jun10ng Date: Fri, 19 Jun 2020 22:21:12 +0800 Subject: [PATCH 1/2] Correct a typo --- opts.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opts.go b/opts.go index 9219235..87ae740 100644 --- a/opts.go +++ b/opts.go @@ -19,7 +19,7 @@ type emitterSettings struct { makeStateful bool } -// Stateful is an Emitter option which makes makes the eventbus channel +// Stateful is an Emitter option which makes the eventbus channel // 'remember' last event sent, and when a new subscriber joins the // bus, the remembered event is immediately sent to the subscription // channel. From 94baf4d573e4adb70e9e13e343e6726d9e769c3d Mon Sep 17 00:00:00 2001 From: Jun10ng Date: Fri, 19 Jun 2020 22:54:02 +0800 Subject: [PATCH 2/2] delete extra space --- opts.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opts.go b/opts.go index 87ae740..a8eae6f 100644 --- a/opts.go +++ b/opts.go @@ -19,7 +19,7 @@ type emitterSettings struct { makeStateful bool } -// Stateful is an Emitter option which makes the eventbus channel +// Stateful is an Emitter option which makes the eventbus channel // 'remember' last event sent, and when a new subscriber joins the // bus, the remembered event is immediately sent to the subscription // channel.