Skip to content

Commit

Permalink
Apply minor fixes to Panache ORM doc
Browse files Browse the repository at this point in the history
  • Loading branch information
geoand committed Feb 10, 2022
1 parent c7c39f6 commit 47c9917
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion docs/src/main/asciidoc/hibernate-orm-panache.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 47c9917

Please sign in to comment.