From 3d1af3f44c67366c6bbb708ac78dc1c6dbc34461 Mon Sep 17 00:00:00 2001 From: Casper Beyer Date: Wed, 10 Nov 2021 14:19:59 +0800 Subject: [PATCH] Fix typo in `Bind` documentation comments --- js.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js.go b/js.go index f2ae35715..bd22e9fed 100644 --- a/js.go +++ b/js.go @@ -2135,7 +2135,7 @@ func RateLimit(n uint64) SubOpt { // BindStream binds a consumer to a stream explicitly based on a name. // When a stream name is not specified, the library uses the subscribe // subject as a way to find the stream name. It is done by making a request -// to the server to get list of stream names that have a fileter for this +// to the server to get list of stream names that have a filter for this // subject. If the returned list contains a single stream, then this // stream name will be used, otherwise the `ErrNoMatchingStream` is returned. // To avoid the stream lookup, provide the stream name with this function.