aboutsummaryrefslogtreecommitdiff
path: root/field_string.go
diff options
context:
space:
mode:
authorStefan Majewsky <majewsky@gmx.net>2018-02-08 00:33:41 +0100
committerStefan Majewsky <majewsky@gmx.net>2018-02-08 00:33:41 +0100
commit49a15959b15dcaefaff48146a7afabf640934f06 (patch)
tree079ab5deb0a7cbfef11661560a3a199e87b89652 /field_string.go
parent0753d87f410da6432f9ab4ab1d35e9b923fb9766 (diff)
downloadgo-schwift-49a15959b15dcaefaff48146a7afabf640934f06.tar.gz
add ObjectHeaders
Diffstat (limited to 'field_string.go')
-rw-r--r--field_string.go6
1 files changed, 3 insertions, 3 deletions
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)