From bc7013888d9a26052b5b24e9d5fc8739f1faf6fc Mon Sep 17 00:00:00 2001 From: Romain Caire Date: Mon, 27 Nov 2023 22:31:55 +0100 Subject: [PATCH] Fix comment in typo --- device_response.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/device_response.go b/device_response.go index 4f1c3899c..b9b9d655e 100644 --- a/device_response.go +++ b/device_response.go @@ -31,7 +31,7 @@ func (d *DeviceResponse) GetDeviceCode() string { return d.deviceResponse.DeviceCode } -// GetUserCode returns the response's user code +// SetDeviceCode returns the response's user code func (d *DeviceResponse) SetDeviceCode(code string) { d.deviceResponse.DeviceCode = code }