Renamed IndentedPrintDecorator to PrettyPrintDecorator

This commit is contained in:
Benoit Blanchon
2014-08-25 11:42:07 +02:00
parent f7aa0f89e3
commit 2ddf8f1619
11 changed files with 27 additions and 27 deletions

View File

@ -8,7 +8,7 @@
#include "JsonValue.h"
#include "Print.h"
#include "Printable.h"
#include "IndentedPrintDecorator.h"
#include "PrettyPrintDecorator.h"
namespace ArduinoJson
{
@ -28,7 +28,7 @@ namespace ArduinoJson
size_t prettyPrintTo(Print& p) const
{
IndentedPrintDecorator decorator(p);
PrettyPrintDecorator decorator(p);
return printTo(decorator);
}