summaryrefslogtreecommitdiff
path: root/calc.go
diff options
context:
space:
mode:
authorxuri <xuri.me@gmail.com>2021-09-08 22:05:42 +0800
committerxuri <xuri.me@gmail.com>2021-09-08 22:05:42 +0800
commit72d84c0cbdd0ad748dba19e21d4e92ea077110c7 (patch)
tree59a2c2b40e1969411223f84070697f73812f1856 /calc.go
parent684603befa0fbde2ee8db704e37a544f9d92d99d (diff)
This closes #262, support set line width of add the shape
Diffstat (limited to 'calc.go')
-rw-r--r--calc.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/calc.go b/calc.go
index ef8d0b0..d650eca 100644
--- a/calc.go
+++ b/calc.go
@@ -948,7 +948,7 @@ func (f *File) parseOperatorPrefixToken(optStack, opdStack *Stack, token efp.Tok
return
}
-// isFunctionStartToken determine if the token is function stop.
+// isFunctionStartToken determine if the token is function start.
func isFunctionStartToken(token efp.Token) bool {
return token.TType == efp.TokenTypeFunction && token.TSubType == efp.TokenSubTypeStart
}