diff --git a/doc/go1.13.html b/doc/go1.13.html index b5e6257008..ec28e38e97 100644 --- a/doc/go1.13.html +++ b/doc/go1.13.html @@ -34,10 +34,6 @@ Do not send CLs removing the interior tags from such phrases. different ones.

-

-TODO -

-

Changes to the language

@@ -346,10 +342,6 @@ godoc

Core library

-

-TODO generally -

-

TLS 1.3

@@ -383,10 +375,6 @@ TODO generally in mind.

-

-TODO -

-
bytes

@@ -454,6 +442,24 @@ TODO

+
errors
+
+ +

+ The new function As finds the first error in a given error’s chain + that matches a given target’s type, and if so, sets the target to that error value. +

+

+ The new function Is reports whether a given error value matches an + error in another’s chain. +

+

+ The new function Unwrap returns the result of calling + Unwrap on a given error, if one exists. +

+ +
+
html/template