Skip to content

Commit bba7e01

Browse files
committed
1 parent 47ec100 commit bba7e01

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/FusionAuthClient.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -610,13 +610,13 @@ export class FusionAuthClient {
610610
/**
611611
* Deletes the key for the given Id.
612612
*
613-
* @param {UUID} keyOd The Id of the key to delete.
613+
* @param {UUID} keyId The Id of the key to delete.
614614
* @returns {Promise<ClientResponse<void>>}
615615
*/
616-
deleteKey(keyOd: UUID): Promise<ClientResponse<void>> {
616+
deleteKey(keyId: UUID): Promise<ClientResponse<void>> {
617617
return this.start<void, Errors>()
618618
.withUri('/api/key')
619-
.withUriSegment(keyOd)
619+
.withUriSegment(keyId)
620620
.withMethod("DELETE")
621621
.go();
622622
}

0 commit comments

Comments
 (0)