1
0
mirror of https://github.com/golang/go synced 2024-11-18 10:54:40 -07:00

fmt: rephrase the behaviour of %p on slices

This commit is contained in:
mewmew 2018-03-30 01:01:38 +02:00
parent 3f3ec2deea
commit bc34442067

View File

@ -46,7 +46,7 @@
%x base 16, lower-case, two characters per byte
%X base 16, upper-case, two characters per byte
Slice:
%p pointer to the first element of the slice in base 16 notation, with leading 0x
%p address of 0th element in base 16 notation, with leading 0x
Pointer:
%p base 16 notation, with leading 0x
The %b, %d, %o, %x and %X verbs also work with pointers,