Hello. I was looking for documentation on the `<nlog>` element in NLog config files. The best I've found so far is the XML schema. While examining it, I noticed this line: ```xml <xs:element name="quoteChar" type="xs:string" minOccurs="0" maxOccurs="1" default=""" /> ``` I think the `"""` might make some XML Schema parsing tools fail. It should probably be: ```xml <xs:element name="quoteChar" type="xs:string" minOccurs="0" maxOccurs="1" default=""" /> ```