Skip to content
This repository was archived by the owner on Apr 14, 2024. It is now read-only.

Commit 1e56871

Browse files
author
Julien Neuhart
committed
fixing typos and updating Golang version
1 parent 2434075 commit 1e56871

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
GOLANG_VERSION=1.12
2-
GOTENBERG_VERSION=6.0.0
1+
GOLANG_VERSION=1.13
2+
GOTENBERG_VERSION=snapshot
33
VERSION=snapshot
4-
GOLANGCI_LINT_VERSION=1.17.1
4+
GOLANGCI_LINT_VERSION=1.19.1
55

66
# gofmt and goimports all go files.
77
fmt:

client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ func (req *request) WebhookURL(url string) {
6060
req.values[webhookURL] = url
6161
}
6262

63-
// WebhookURL sets WebhookURLTimeout form field.
63+
// WebhookURLTimeout sets webhookURLTimeout form field.
6464
func (req *request) WebhookURLTimeout(timeout float64) {
6565
req.values[webhookURLTimeout] = strconv.FormatFloat(timeout, 'f', 2, 64)
6666
}

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/thecodingmachine/gotenberg-go-client/v6
22

3-
go 1.12
3+
go 1.13
44

55
require (
66
github.com/davecgh/go-spew v1.1.1 // indirect

0 commit comments

Comments
 (0)