Skip to content

Commit

Permalink
README.md export contract comment fix
Browse files Browse the repository at this point in the history
  • Loading branch information
GoodforGod committed Aug 7, 2020
1 parent b1b47d4 commit 26b3f9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ Default *IWriter* doesn't do that by default, so such option should be activated

```java
final GenFactory factory = new GenFactory();
final JsonExporter exporter = new JsonExporter(fileName -> new FileWriter(fileName, true)); // tell writer to append file
final JsonExporter exporter = new JsonExporter(fileName -> new FileWriter(fileName, false)); // do not delete file before write

factory.export(User.class, 100_000_000_000L, exporter);
```
Expand Down

0 comments on commit 26b3f9c

Please sign in to comment.