diff --git a/doc/go1.13.html b/doc/go1.13.html index ce3e8c9692..0fe8499f3a 100644 --- a/doc/go1.13.html +++ b/doc/go1.13.html @@ -291,11 +291,11 @@ TODO
- TODO: https://golang.org/cl/171337: add Value.IsZero
+ The new Value.IsZero method reports whether a Value is a zero value for its type.
- TODO: https://golang.org/cl/174531: MakeFunc: allow assignment conversions on values returned from the wrapped function
+ The MakeFunc function now allows assignment conversions on returned values, instead of requiring exact type match. This is particularly useful when the type being returned is an interface type, but the value actually returned is a concrete value implementing that type.