diff --git a/src/main/java/tech/ailef/dbadmin/external/annotations/ComputedColumn.java b/src/main/java/tech/ailef/dbadmin/external/annotations/ComputedColumn.java index e9aa87f..8870199 100644 --- a/src/main/java/tech/ailef/dbadmin/external/annotations/ComputedColumn.java +++ b/src/main/java/tech/ailef/dbadmin/external/annotations/ComputedColumn.java @@ -25,9 +25,8 @@ import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** - * This annotation marks a method as a "virtual" whose value is computed by - * using the method itself rather than retrieving it like a physical column - * from the database. + * This annotation marks a method as a "virtual" column whose value is computed by + * using the method itself rather than retrieving it from the database like a physical column. * */ @Retention(RetentionPolicy.RUNTIME)