From d8b5fa716a0d6f06d5fda67f32ba741bfa999759 Mon Sep 17 00:00:00 2001 From: Adnan Maolood Date: Tue, 23 Feb 2021 12:21:05 -0500 Subject: [PATCH] client: Use present tense in documentation --- client.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client.go b/client.go index 4656d74..4f606c3 100644 --- a/client.go +++ b/client.go @@ -30,7 +30,7 @@ type Client struct { // Get sends a Gemini request for the given URL. // If the provided context is canceled or times out, the request -// will be aborted and the context's error will be returned. +// is aborted and the context's error is returned. // // An error is returned if there was a Gemini protocol error. // A non-2x status code doesn't cause an error. @@ -49,7 +49,7 @@ func (c *Client) Get(ctx context.Context, url string) (*Response, error) { // Do sends a Gemini request and returns a Gemini response. // If the provided context is canceled or times out, the request -// will be aborted and the context's error will be returned. +// is aborted and the context's error is returned. // // An error is returned if there was a Gemini protocol error. // A non-2x status code doesn't cause an error.