diff --git a/src/interfaces/decorator-options/exclude-options.interface.ts b/src/interfaces/decorator-options/exclude-options.interface.ts index dc86dbfa8..c61b439d6 100644 --- a/src/interfaces/decorator-options/exclude-options.interface.ts +++ b/src/interfaces/decorator-options/exclude-options.interface.ts @@ -3,12 +3,12 @@ */ export interface ExcludeOptions { /** - * Expose this property only when transforming from plain to class instance. + * Exclude this property only when transforming from plain to class instance. */ toClassOnly?: boolean; /** - * Expose this property only when transforming from class instance to plain object. + * Exclude this property only when transforming from class instance to plain object. */ toPlainOnly?: boolean; }