From f58155dae956f2407c0f1d99503276f770852e83 Mon Sep 17 00:00:00 2001 From: sacOO7 Date: Fri, 23 Dec 2022 14:42:10 +0530 Subject: [PATCH] Fixed doc comments for auth.go options --- ably/auth.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ably/auth.go b/ably/auth.go index ea70040c..ff444f72 100644 --- a/ably/auth.go +++ b/ably/auth.go @@ -66,10 +66,10 @@ type Auth struct { method int client *REST - // save params to use with token renewal + // params to use with token renewal params *TokenParams - // a host part of AuthURL + // host part of AuthURL host string // clientID is used for identifying this client when publishing messages or for presence purposes. @@ -86,7 +86,7 @@ type Auth struct { serverTimeOffset time.Duration - // ServerTimeHandler when provided this will be used to query server time. + // serverTimeHandler when provided this will be used to query server time. serverTimeHandler func() (time.Time, error) }