Skip to content

Commit ee425bf

Browse files
committed
fix readme
1 parent 68a323e commit ee425bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,10 +146,10 @@ public void TestNext() {
146146
* For filling some object or class you can use Fill builder
147147
```java
148148
//For class
149-
TestBoxClass testBoxClass = RandomValue.fill(Fill.object(TestBoxClass.class).gen());
149+
TestBoxClass testBoxClass = RandomValue.fill(TestBoxClass.class);
150150

151151
//For object
152-
TestBoxClass testBoxClass = RandomValue.fill(Fill.object(new TestBoxClass()).gen());
152+
TestBoxClass testBoxClass = RandomValue.fill(new TestBoxClass());
153153
```
154154
* Set deep for filling object. Default value equals three.
155155
```java

0 commit comments

Comments
 (0)