spelling: contains

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref
2024-10-22 08:42:39 -04:00
committed by Jindra Petřík
parent db9d1c4be6
commit 7ff3e2d1e0

View File

@@ -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("]]>");
}