1
0
mirror of https://github.com/golang/go synced 2024-09-30 10:18:32 -06:00

fix indentation

R=rsc
OCL=28752
CL=28752
This commit is contained in:
Rob Pike 2009-05-13 10:34:11 -07:00
parent 7aabf2d9b1
commit 6fa6f134f1

View 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.