Skip to content

Commit

Permalink
Merge pull request #90 from mipo256/main
Browse files Browse the repository at this point in the history
Removed duplicated at '@' in Kotlin annotations
  • Loading branch information
babyfish-ct authored Dec 28, 2024
2 parents 4c955c6 + 1f32145 commit 7f9a4c9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/overview/_entity.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public interface BookStore {
interface BookStore {

@Id
@@GeneratedValue(strategy = GenerationType.IDENTITY)
@GeneratedValue(strategy = GenerationType.IDENTITY)
val id: Long

val name: String
Expand Down
2 changes: 1 addition & 1 deletion docs/quick-view/precondition.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public interface BookStore {
interface BookStore {

@Id
@@GeneratedValue(strategy = GenerationType.IDENTITY)
@GeneratedValue(strategy = GenerationType.IDENTITY)
val id: Long

val name: String
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public interface BookStore {
interface BookStore {

@Id
@@GeneratedValue(strategy = GenerationType.IDENTITY)
@GeneratedValue(strategy = GenerationType.IDENTITY)
val id: Long

val name: String
Expand Down

0 comments on commit 7f9a4c9

Please sign in to comment.