From 866f63e84eb7096e64b7a39b993c2ca3e943e425 Mon Sep 17 00:00:00 2001 From: Robert Griesemer Date: Thu, 9 Feb 2017 13:22:37 -0800 Subject: [PATCH] spec: refer to "not defined type" rather than "unnamed type" in conversions We missed this in https://golang.org/cl/36213. Thanks to Chris Hines for pointing it out. For #18130. Change-Id: I6279ab19966c4391c4b4458b21fd2527d3f949dd Reviewed-on: https://go-review.googlesource.com/36691 Reviewed-by: Ian Lance Taylor --- doc/go_spec.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/go_spec.html b/doc/go_spec.html index 603c1e75b47..69e880090e8 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -1,6 +1,6 @@ @@ -3908,7 +3908,8 @@ in any of these cases:
  • ignoring struct tags (see below), - x's type and T are unnamed pointer types + x's type and T are pointer types + that are not defined types, and their pointer base types have identical underlying types.