From 6fa6f134f1c0b64f5a52e2a39e2bcb009d877cc3 Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Wed, 13 May 2009 10:34:11 -0700 Subject: [PATCH] fix indentation R=rsc OCL=28752 CL=28752 --- src/lib/template/template.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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. -- 2.48.1