diff options
Diffstat (limited to 'sax')
-rw-r--r-- | sax/source/expatwrap/saxwriter.cxx | 4 | ||||
-rw-r--r-- | sax/source/tools/fastserializer.hxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sax/source/expatwrap/saxwriter.cxx b/sax/source/expatwrap/saxwriter.cxx index 321c87b2e28b..723031804dc2 100644 --- a/sax/source/expatwrap/saxwriter.cxx +++ b/sax/source/expatwrap/saxwriter.cxx @@ -121,7 +121,7 @@ public: , nCurrentPos(0) , m_bStartElementFinished(true) { - OSL_ENSURE(SEQUENCESIZE > 50, "Sequence cache size to small"); + OSL_ENSURE(SEQUENCESIZE > 50, "Sequence cache size too small"); mp_Sequence = m_Sequence.getArray(); } ~SaxWriterHelper() @@ -1154,7 +1154,7 @@ void SAXWriter::startElement(const OUString& aName, const Reference< XAttributeL if (eRet == SAX_WARNING) { SAXInvalidCharacterException except; - except.Message = "Invalid character during XML-Export in a attribute value"; + except.Message = "Invalid character during XML-Export in an attribute value"; throw except; } else if (eRet == SAX_ERROR) diff --git a/sax/source/tools/fastserializer.hxx b/sax/source/tools/fastserializer.hxx index e3aa17a78f91..ba956610f533 100644 --- a/sax/source/tools/fastserializer.hxx +++ b/sax/source/tools/fastserializer.hxx @@ -82,7 +82,7 @@ public: */ void startFastElement( ::sal_Int32 Element, FastAttributeList const * pAttrList = nullptr ); - /** receives notification of the end of an known element. + /** receives notification of the end of a known element. @see startFastElement */ void endFastElement( ::sal_Int32 Element ); |