Skip to content

Commit 4b46b05

Browse files
committed
Update README.md
1 parent 3d53990 commit 4b46b05

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<div align="center">
44
<b><em>Easy Random</em></b><br>
5-
The simple, stupid random Java&trade; beans generator
5+
The simple, stupid random Java&trade; objects generator
66
</div>
77

88
<div align="center">
@@ -31,7 +31,7 @@ for now. Please consider upgrading to one of these versions at your earliest con
3131

3232
# What is Easy Random ?
3333

34-
Easy Random is a library that generates random Java beans. You can think of it as an [ObjectMother](https://martinfowler.com/bliki/ObjectMother.html) for the JVM. Let's say you have a class `Person` and you want to generate a random instance of it, here we go:
34+
Easy Random is a library that generates random Java objects. You can think of it as an [ObjectMother](https://martinfowler.com/bliki/ObjectMother.html) for the JVM. Let's say you have a class `Person` and you want to generate a random instance of it, here we go:
3535

3636
```java
3737
EasyRandom easyRandom = new EasyRandom();
@@ -108,7 +108,7 @@ Address address = new Address(street, "123456", "London", "United Kingdom");
108108
Person person = new Person("Foo", "Bar", "[email protected]", Gender.MALE, address);
109109
```
110110

111-
And if these classes do not provide constructors with parameters (may be some legacy beans you can't change), you would write:
111+
And if these classes do not provide constructors with parameters (may be some legacy types you can't change), you would write:
112112

113113
```java
114114
Street street = new Street();

0 commit comments

Comments
 (0)