From: David Crawshaw Date: Wed, 17 Feb 2016 14:41:12 +0000 (-0500) Subject: cmd/link: typo in error message X-Git-Tag: go1.7beta1~1811 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=41eb5ca089be5495ab2299e2b6778fb8ceb8010a;p=gostls13.git cmd/link: typo in error message Change-Id: Ideeef320d6a01a10c89524b6d895a64210a60f64 Reviewed-on: https://go-review.googlesource.com/19693 Reviewed-by: Brad Fitzpatrick Run-TryBot: David Crawshaw TryBot-Result: Gobot Gobot --- diff --git a/src/cmd/link/internal/ld/dwarf.go b/src/cmd/link/internal/ld/dwarf.go index a96b37a4be..fb3d8fb2cd 100644 --- a/src/cmd/link/internal/ld/dwarf.go +++ b/src/cmd/link/internal/ld/dwarf.go @@ -951,7 +951,7 @@ func defgotype(gotype *LSym) *DWDie { } if !strings.HasPrefix(gotype.Name, "type.") { - Diag("dwarf: type name doesn't start with \".type\": %s", gotype.Name) + Diag("dwarf: type name doesn't start with \"type.\": %s", gotype.Name) return mustFind(&dwtypes, "") }