From: Rob Pike Date: Wed, 13 May 2009 17:34:11 +0000 (-0700) Subject: fix indentation X-Git-Tag: weekly.2009-11-06~1653 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=6fa6f134f1c0b64f5a52e2a39e2bcb009d877cc3;p=gostls13.git fix indentation R=rsc OCL=28752 CL=28752 --- diff --git a/src/lib/template/template.go b/src/lib/template/template.go index 335a306901..9a40109f90 100644 --- a/src/lib/template/template.go +++ b/src/lib/template/template.go @@ -70,12 +70,12 @@ import ( // Errors returned during parsing and execution. Users may extract the information and reformat // if they desire. type Error struct { - Line int; - Msg string; + Line int; + Msg string; } func (e *Error) String() string { - return fmt.Sprintf("line %d: %s", e.Line, e.Msg) + return fmt.Sprintf("line %d: %s", e.Line, e.Msg) } // Most of the literals are aces.