From 1f32145f83e881852ce7b0393aad9c3ca4c471d0 Mon Sep 17 00:00:00 2001 From: mipo256 Date: Sat, 28 Dec 2024 13:53:45 +0300 Subject: [PATCH] Removed duplicated at '@' in Kotlin annotations --- docs/overview/_entity.mdx | 2 +- docs/quick-view/precondition.mdx | 2 +- .../docusaurus-plugin-content-docs/current/overview/_entity.mdx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/overview/_entity.mdx b/docs/overview/_entity.mdx index 68cfb7ec3..59120fdc2 100644 --- a/docs/overview/_entity.mdx +++ b/docs/overview/_entity.mdx @@ -49,7 +49,7 @@ public interface BookStore { interface BookStore { @Id - @@GeneratedValue(strategy = GenerationType.IDENTITY) + @GeneratedValue(strategy = GenerationType.IDENTITY) val id: Long val name: String diff --git a/docs/quick-view/precondition.mdx b/docs/quick-view/precondition.mdx index 32dbae5a3..66912f3db 100644 --- a/docs/quick-view/precondition.mdx +++ b/docs/quick-view/precondition.mdx @@ -63,7 +63,7 @@ public interface BookStore { interface BookStore { @Id - @@GeneratedValue(strategy = GenerationType.IDENTITY) + @GeneratedValue(strategy = GenerationType.IDENTITY) val id: Long val name: String diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/overview/_entity.mdx b/i18n/zh/docusaurus-plugin-content-docs/current/overview/_entity.mdx index e223e2703..9452ef88e 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/overview/_entity.mdx +++ b/i18n/zh/docusaurus-plugin-content-docs/current/overview/_entity.mdx @@ -49,7 +49,7 @@ public interface BookStore { interface BookStore { @Id - @@GeneratedValue(strategy = GenerationType.IDENTITY) + @GeneratedValue(strategy = GenerationType.IDENTITY) val id: Long val name: String