Skip to content

Commit

Permalink
Merge pull request #9902 from gsmet/kotlin-panache-fix-link
Browse files Browse the repository at this point in the history
Fix a link in the Panache Kotlin guide
  • Loading branch information
gsmet authored Jun 10, 2020
2 parents c792b12 + c03a624 commit 26a5120
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/src/main/asciidoc/hibernate-orm-panache-kotlin.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ querying bound to a specific type.
knowing they will be properly assigned either by the constructor (not shown) or by hibernate loading data from the
database.

NOTE: These types differ from the Java types mentioned in those tutorials. For kotlin support, all the Panache
NOTE: These types differ from the Java types mentioned in those tutorials. For Kotlin support, all the Panache
types will be found in the `io.quarkus.hibernate.orm.panache.kotlin` package. This subpackage allows for the distinction
between the Java and Kotlin variants and allows for both to be used unambiguously in a single project.

Expand Down Expand Up @@ -177,8 +177,8 @@ NOTE: The rest of the documentation show usages based on the active record patte
but keep in mind that they can be performed with the repository pattern as well.
The repository pattern examples have been omitted for brevity.

For more examples, please consult the link:hibernate-orm-panache.adoc[java version] for complete details. Both APIs
are the same and work identically except for some kotlin-specific tweaks to make things feel more natural to
For more examples, please consult the link:hibernate-orm-panache[Java version] for complete details. Both APIs
are the same and work identically except for some Kotlin-specific tweaks to make things feel more natural to
Kotlin developers. These tweaks include things like better use of nullability and the lack of `Optional` on API
methods.

Expand All @@ -199,4 +199,4 @@ need but if all you need are the Kotlin APIs then include the following dependen
</dependencies>
----
<1> Note the addition of `-kotlin` on the end. Generally you'll only need this version but if your project will be using
both java and kotlin code, you can safely include both artifacts.
both Java and Kotlin code, you can safely include both artifacts.

0 comments on commit 26a5120

Please sign in to comment.