From c05f86a46a782283e217a0704616753fa7dbb3cf Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Mon, 4 Jan 2010 07:36:39 +1100 Subject: [PATCH] fix up YB and add ZB, EB in example R=rsc CC=golang-dev https://golang.org/cl/183107 --- doc/effective_go.html | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/doc/effective_go.html b/doc/effective_go.html index 29327095023..ab9e3a8c3d8 100644 --- a/doc/effective_go.html +++ b/doc/effective_go.html @@ -1360,6 +1360,8 @@ const ( GB TB PB + EB + ZB YB ) @@ -1373,6 +1375,10 @@ func (b ByteSize) String() string { switch { case b >= YB: return fmt.Sprintf("%.2fYB", b/YB) + case b >= ZB: + return fmt.Sprintf("%.2fZB", b/ZB) + case b >= EB: + return fmt.Sprintf("%.2fEB", b/EB) case b >= PB: return fmt.Sprintf("%.2fPB", b/PB) case b >= TB: