From 79012cd39cf36ef27d6e48580779a785337ad21c Mon Sep 17 00:00:00 2001 From: Chantal Loncle <82039410+bog-walk@users.noreply.github.com> Date: Tue, 13 Feb 2024 17:26:54 -0500 Subject: [PATCH] docs: Add missing KDocs for EntityID and Entity subclasses API Add missing KDocs parameter --- .../src/main/kotlin/org/jetbrains/exposed/dao/id/EntityID.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/exposed-core/src/main/kotlin/org/jetbrains/exposed/dao/id/EntityID.kt b/exposed-core/src/main/kotlin/org/jetbrains/exposed/dao/id/EntityID.kt index a2819a7be2..4bea278b62 100644 --- a/exposed-core/src/main/kotlin/org/jetbrains/exposed/dao/id/EntityID.kt +++ b/exposed-core/src/main/kotlin/org/jetbrains/exposed/dao/id/EntityID.kt @@ -4,9 +4,10 @@ package org.jetbrains.exposed.dao.id * Class representing a wrapper for a stored identity value of type [T]. * * The class constructor could be useful, for example, if needing to manually provide an identity value to a column - * default function or when manually inserting into identity columns using any DSL insert functions. + * default function or when manually inserting into identity columns using any DSL insert function. * * @param table The [IdTable] that stores the identity value. + * @param id The value of type [T] to store. * @sample org.jetbrains.exposed.sql.tests.shared.entities.EntityTestsData.YTable * @sample org.jetbrains.exposed.sql.tests.shared.dml.InsertTests.testInsertWithPredefinedId */