Skip to content

Commit c2ba258

Browse files
committed
docs(model): Slightly improve function docs in SecretRepository
Signed-off-by: Martin Nonnenmacher <[email protected]>
1 parent 768a6c7 commit c2ba258

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

model/src/commonMain/kotlin/repositories/SecretRepository.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,12 @@ interface SecretRepository {
4848
): ListQueryResult<Secret>
4949

5050
/**
51-
* Update a secret by [id] and name with the [present][OptionalValue.Present] values.
51+
* Update a secret by [id] and [name] with the [present][OptionalValue.Present] values.
5252
*/
5353
fun updateForIdAndName(id: HierarchyId, name: String, description: OptionalValue<String?>): Secret
5454

5555
/**
56-
* Delete a secret by [id] and secret's [name].
56+
* Delete a secret by [id] and [name].
5757
*/
5858
fun deleteForIdAndName(id: HierarchyId, name: String)
5959
}

0 commit comments

Comments
 (0)