summaryrefslogtreecommitdiff
path: root/inline_parser_state.go
diff options
context:
space:
mode:
Diffstat (limited to 'inline_parser_state.go')
-rw-r--r--inline_parser_state.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/inline_parser_state.go b/inline_parser_state.go
index 783faf6..9f52502 100644
--- a/inline_parser_state.go
+++ b/inline_parser_state.go
@@ -12,7 +12,7 @@ func (pis *inlineParserState) push(c int) {
}
func (pis *inlineParserState) pop() (c int) {
- var size int = len(pis.stack)
+ var size = len(pis.stack)
if size > 0 {
c = pis.stack[size-1]
pis.stack = pis.stack[:size-1]