From 49a15959b15dcaefaff48146a7afabf640934f06 Mon Sep 17 00:00:00 2001 From: Stefan Majewsky Date: Thu, 8 Feb 2018 00:33:41 +0100 Subject: add ObjectHeaders --- field_string.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'field_string.go') diff --git a/field_string.go b/field_string.go index d44d517..f12d2d5 100644 --- a/field_string.go +++ b/field_string.go @@ -41,19 +41,19 @@ func (f FieldString) Get() string { return f.h.Get(f.k) } -//Set writes a new value for this header into the corresponding schwift.Headers +//Set writes a new value for this header into the corresponding headers //instance. func (f FieldString) Set(value string) { f.h.Set(f.k, value) } -//Del removes this key from the original schwift.Headers instance, so that the +//Del removes this key from the original headers instance, so that the //key will remain unchanged on the server during Update(). func (f FieldString) Del() { f.h.Del(f.k) } -//Clear sets this key to an empty string in the original schwift.Headers +//Clear sets this key to an empty string in the original headers //instance, so that the key will be removed on the server during Update(). func (f FieldString) Clear() { f.h.Clear(f.k) -- cgit v1.2.3