Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
golang
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
golang
Commits
6fa6f134
Commit
6fa6f134
authored
May 13, 2009
by
Rob Pike
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix indentation
R=rsc OCL=28752 CL=28752
parent
7aabf2d9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
template.go
src/lib/template/template.go
+3
-3
No files found.
src/lib/template/template.go
View file @
6fa6f134
...
...
@@ -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.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment