Commit 6fa6f134 authored by Rob Pike's avatar Rob Pike

fix indentation

R=rsc
OCL=28752
CL=28752
parent 7aabf2d9
......@@ -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.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment