spelling: contains

Signed-off-by: Josh Soref <[email protected]>
This commit is contained in:
Josh Soref
2024-10-29 16:55:43 +01:00
committed by Jindra Petřík
parent db9d1c4be6
commit 7ff3e2d1e0
@@ -291,7 +291,7 @@ public class XFLXmlWriter implements XMLStreamWriter {
@Override
public void writeCData(String data) throws XMLStreamException {
closeStartElement();
// todo: split when data cintains "]]>"
// todo: split when data contains "]]>"
append("<![CDATA[").append(data).append("]]>");
}