Fix bug in HTMLEntityDecoder. Make tests pass.

This commit is contained in:
Brent Simmons 2024-09-16 22:07:22 -07:00
parent 88675adff2
commit 32a7480e6c

View File

@ -121,7 +121,7 @@ final class EntityScanner {
scanLocation = initialScanLocation + 1
return nil
}
scanLocation = initialScanLocation + 1
scanLocation = scanLocation + 1
return decodedEntity
}