diff --git a/docs/junit-integration.md b/docs/junit-integration.md index b65cbdf02..1055e76c3 100644 --- a/docs/junit-integration.md +++ b/docs/junit-integration.md @@ -96,8 +96,8 @@ package. |-------------------|----------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------| | `@Ascii` | `java.lang.String` | `String` should only contain ASCII characters | | `@InRange` | `byte`, `Byte`, `short`, `Short`, `int`, `Int`, `long`, `Long` | Specifies `min` and `max` values of generated integrals | -| `@InRangeFloat` | `float`, `Float` | Specifies `min` and `max` values of generated floats | -| `@InRangeDouble` | `double`, `Double` | Specifies `min` and `max` values of generated doubles | +| `@FloatInRange` | `float`, `Float` | Specifies `min` and `max` values of generated floats | +| `@DoubleInRange` | `double`, `Double` | Specifies `min` and `max` values of generated doubles | | `@NotNull` | | Specifies that a reference type should not be `null` | | `@WithLength` | `byte[]` | Specifies the length of the generated byte array | | `@WithUtf8Length` | `java.lang.String` | Specifies the length of the generated string in UTF-8 bytes, see annotation Javadoc for further information |