From 82ad76c8b66c8c8b8af04d728ff82691fdeeb73c Mon Sep 17 00:00:00 2001 From: Artem Tartakynov Date: Mon, 16 Nov 2015 16:44:57 +0600 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c3efcc1..b80c17e 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ Add the following to your maven configuration or taylor to your own dependency m com.2gis.cartoshka cartoshka - 0.1-SNAPSHOT + 0.2-SNAPSHOT ``` @@ -50,7 +50,7 @@ try (FileReader reader = new FileReader(file)) { style.accept(new ConstantFoldVisitor(), null); // pretty print - String pretty = style.accept(new PrintVisitor(2), null); + String pretty = style.accept(new PrintVisitor(), null); System.out.println(pretty); } catch (IOException e) { e.printStackTrace();