Skip to content

Commit 9a51e91

Browse files
committed
fix pod lib lint warnings
1 parent 1b907fc commit 9a51e91

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

TrustKit/Pinning/pinning_utils.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
3131
This function invokes SecTrustEvaluateWithError() on iOS12+, macOS14+ and SecTrustEvaluate() otherwise.
3232
33-
@param trust The trust management object to evaluate
34-
@param trsustResult On return, points to a result type reflecting the result of this evaluation.
33+
@param serverTrust The trust management object to evaluate
34+
@param trustResult On return, points to a result type reflecting the result of this evaluation.
3535
@param error An error pointer the method uses to return an error when trust evaluation fails. Set to nil to ignore the error (this is not recommended!)
3636
3737
*/
@@ -51,7 +51,7 @@ SecCertificateRef getCertificateAtIndex(SecTrustRef serverTrust, CFIndex index);
5151
Returns the public key for a leaf certificate after it has been evaluated.
5252
5353
This function invokes SecTrustCopyKey() on iOS 14+ and SecTrustCopyPublicKey otherwise
54-
@param trust The trust management object to evaluate
54+
@param serverTrust The trust management object to evaluate
5555
@return The leaf certificate's public key, or nil if it the public key could not be extracted
5656
*/
5757
SecKeyRef copyKey(SecTrustRef serverTrust);

0 commit comments

Comments
 (0)