aboutsummaryrefslogtreecommitdiff
path: root/spec/lexer.go
diff options
context:
space:
mode:
Diffstat (limited to 'spec/lexer.go')
-rw-r--r--spec/lexer.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/lexer.go b/spec/lexer.go
index 83b1a93..1f8805a 100644
--- a/spec/lexer.go
+++ b/spec/lexer.go
@@ -35,12 +35,12 @@ const (
)
type Position struct {
- row int
+ Row int
}
func newPosition(row int) Position {
return Position{
- row: row,
+ Row: row,
}
}