From 93618bc473042cc01c58673e8d861325b0edc97d Mon Sep 17 00:00:00 2001 From: Fabian <-> Date: Sat, 28 Mar 2020 00:49:34 +0100 Subject: [PATCH] fixed c&p errors in cups client doc comments --- README.md | 2 +- cups-client.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b18cc20..58673b5 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # go-ipp -[![Version](https://img.shields.io/github/release-pre/phin1x/go-ipp.svg)](https://github.com/phin1x/go-ipp/releases/tag/v1.4.1) +[![Version](https://img.shields.io/github/release-pre/phin1x/go-ipp.svg)](https://github.com/phin1x/go-ipp/releases/tag/v1.4.2) [![Documentation](https://img.shields.io/badge/go.dev-reference-007d9c?logo=go&logoColor=white)](https://pkg.go.dev/github.com/phin1x/go-ipp?tab=doc) [![Go Report Card](https://goreportcard.com/badge/github.com/phin1x/go-ipp)](https://goreportcard.com/report/github.com/phin1x/go-ipp) [![Licence](https://img.shields.io/github/license/phin1x/go-ipp.svg)](https://github.com/phin1x/go-ipp/blob/master/LICENSE) diff --git a/cups-client.go b/cups-client.go index 175c9ba..0774a09 100644 --- a/cups-client.go +++ b/cups-client.go @@ -5,12 +5,12 @@ import ( "strings" ) -// IPPClient implements a ipp client with specific cups operations +// CUPSClient implements a ipp client with specific cups operations type CUPSClient struct { *IPPClient } -// NewIPPClient creates a new cups ipp client +// NewCUPSClient creates a new cups ipp client func NewCUPSClient(host string, port int, username, password string, useTLS bool) *CUPSClient { ippClient := NewIPPClient(host, port, username, password, useTLS) return &CUPSClient{ippClient}