Doc tweaks

This commit is contained in:
Miek Gieben 2015-01-11 22:15:41 +00:00
parent 735efcbd10
commit a8e252952e
1 changed files with 2 additions and 0 deletions

View File

@ -27,6 +27,7 @@ import (
) )
// Field returns the rdata field i as a string. Fields are indexed starting from 1. // Field returns the rdata field i as a string. Fields are indexed starting from 1.
// Non existing fields will return the empty string.
func Field(r RR, i int) string { func Field(r RR, i int) string {
if i == 0 { if i == 0 {
return "" return ""
@ -39,6 +40,7 @@ func Field(r RR, i int) string {
return strconv.FormatInt(d.Int(), 10) return strconv.FormatInt(d.Int(), 10)
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64: case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
return strconv.FormatUint(d.Uint(), 10) return strconv.FormatUint(d.Uint(), 10)
// more to be added
} }
return "" return ""
} }