]> Cypherpunks repositories - gostls13.git/commitdiff
fix indentation
authorRob Pike <r@golang.org>
Wed, 13 May 2009 17:34:11 +0000 (10:34 -0700)
committerRob Pike <r@golang.org>
Wed, 13 May 2009 17:34:11 +0000 (10:34 -0700)
R=rsc
OCL=28752
CL=28752

src/lib/template/template.go

index 335a3069014f619ef1c2f33546c5c65b4b230dd5..9a40109f902600bc170fc492898a1fb1e40a16b3 100644 (file)
@@ -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.