Commit 61a4e981 authored by Russ Cox's avatar Russ Cox

fmt: document %X of string, []byte

suggested by Mark Summerfield

R=r
CC=golang-dev
https://golang.org/cl/4018042
parent dfc5bb5f
......@@ -36,7 +36,8 @@
String and slice of bytes:
%s the uninterpreted bytes of the string or slice
%q a double-quoted string safely escaped with Go syntax
%x base 16 notation with two characters per byte
%x base 16, lower-case, two characters per byte
%X base 16, upper-case, two characters per byte
Pointer:
%p base 16 notation, with leading 0x
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment