mirror of
https://github.com/unidoc/unioffice.git
synced 2025-04-25 13:48:53 +08:00
zippkg: fix typo in conditional
This commit is contained in:
parent
934dc9ea6b
commit
720a9a8fc0
@ -30,7 +30,7 @@ func (s SelfClosingWriter) Write(b []byte) (int, error) {
|
||||
if b[i] == '>' && b[i+1] == '<' && b[i+2] == '/' {
|
||||
prevTag := []byte{}
|
||||
et := i
|
||||
for j := i; i >= 0; j-- {
|
||||
for j := i; j >= 0; j-- {
|
||||
if b[j] == ' ' {
|
||||
et = j
|
||||
} else if b[j] == '<' {
|
||||
|
Loading…
x
Reference in New Issue
Block a user