diff options
author | xuri <xuri.me@gmail.com> | 2021-09-08 22:05:42 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2021-09-08 22:05:42 +0800 |
commit | 72d84c0cbdd0ad748dba19e21d4e92ea077110c7 (patch) | |
tree | 59a2c2b40e1969411223f84070697f73812f1856 /calc.go | |
parent | 684603befa0fbde2ee8db704e37a544f9d92d99d (diff) |
This closes #262, support set line width of add the shape
Diffstat (limited to 'calc.go')
-rw-r--r-- | calc.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 } |