Skip to content

Commit

Permalink
Minor typos in entity-class.md
Browse files Browse the repository at this point in the history
Correct the spelling of new annotations.
  • Loading branch information
donard-commedagh committed Aug 25, 2022
1 parent 19bfe22 commit b6410b3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions content/en/docs/Reference/entity-class.md
Expand Up @@ -507,7 +507,7 @@ data Employee(
@KomapperId
val id: Int,
@KomapperEmbedded
@KomapperEnumOverrde("currency", KomapperEnum(EnumType.ORDINAL))
@KomapperEnumOverride("currency", KomapperEnum(EnumType.ORDINAL))
val: salary: Money
)
```
Expand All @@ -525,7 +525,7 @@ data Employee(
@KomapperId
val id: Int,
@KomapperEmbedded
@KomapperColumnOverrde("amount", KomapperColumn("SALARY_AMOUNT"))
@KomapperColumnOverrde("currency", KomapperColumn("SALARY_CURRENCY"))
@KomapperColumnOverride("amount", KomapperColumn("SALARY_AMOUNT"))
@KomapperColumnOverride("currency", KomapperColumn("SALARY_CURRENCY"))
val: salary: Money
)

0 comments on commit b6410b3

Please sign in to comment.