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: