minor improvements to documentation and style

This commit is contained in:
Guenter Obiltschnig
2017-02-13 22:33:48 +01:00
parent ba6a7900e2
commit bd82bb1306
21 changed files with 392 additions and 322 deletions

View File

@@ -88,7 +88,7 @@ void PrintHandler::startObject()
void PrintHandler::endObject()
{
if( _tab.length() >= indent())
if (_tab.length() >= indent())
_tab.erase(_tab.length() - indent());
_out << endLine() << _tab << '}';
@@ -207,7 +207,8 @@ void PrintHandler::comma()
void PrintHandler::arrayValue()
{
if (!_objStart) comma();
if (array()) {
if (array())
{
_out << _tab;
}
}