It's actually a type conversion. See
http://golang.org/doc/go_spec.html#Conversions
Converting between string and []byte and between string and []int are
special cases in conversion. This is useful because strings are
immutable, but slices are not.
- Evan