diff --git a/hibernate-core/src/main/java/org/hibernate/annotations/Filter.java b/hibernate-core/src/main/java/org/hibernate/annotations/Filter.java index e13348649f0e..729bc60f38ec 100644 --- a/hibernate-core/src/main/java/org/hibernate/annotations/Filter.java +++ b/hibernate-core/src/main/java/org/hibernate/annotations/Filter.java @@ -90,11 +90,11 @@ /** * Explicitly specifies how aliases are interpolated into - * the {@link #condition} SQL expression. Each {@link - * SqlFragmentAlias} specifies a placeholder name and the - * table whose alias should be interpolated. Placeholders - * are of form {@code {name}} where {@code name} matches - * a {@link SqlFragmentAlias#alias}. + * the {@linkplain #condition SQL expression}. Each listed + * {@link SqlFragmentAlias} specifies a placeholder name + * and the table whose alias should be interpolated. + * Placeholders are of form {@code {name}} where {@code name} + * matches a given {@link SqlFragmentAlias#alias alias}. */ SqlFragmentAlias[] aliases() default {}; }