diff --git a/docs/src/main/asciidoc/hibernate-orm-panache.adoc b/docs/src/main/asciidoc/hibernate-orm-panache.adoc index 93159094a3cfb..ec6acc6df855e 100644 --- a/docs/src/main/asciidoc/hibernate-orm-panache.adoc +++ b/docs/src/main/asciidoc/hibernate-orm-panache.adoc @@ -14,10 +14,15 @@ Hibernate ORM with Panache focuses on making your entities trivial and fun to wr == First: an example -What we're doing in Panache is allow you to write your Hibernate ORM entities like this: +What we're doing in Panache is to allow you to write your Hibernate ORM entities like this: [source,java] ---- +public enum Status { + Alive, + Deceased +} + @Entity public class Person extends PanacheEntity { public String name;