From 8c8c160c92a8c6cbba03bc0cf4adf806c147c179 Mon Sep 17 00:00:00 2001
From: Mariano Cano <mariano.cano@gmail.com>
Date: Thu, 25 Mar 2021 11:06:37 -0700
Subject: [PATCH] Fix method name in comment.

---
 ca/ca.go | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ca/ca.go b/ca/ca.go
index b99b02d8..c4e79268 100644
--- a/ca/ca.go
+++ b/ca/ca.go
@@ -54,8 +54,8 @@ func WithPassword(password []byte) Option {
 	}
 }
 
-// WithIssuer sets the given password as the configured certificate issuer
-// password in the CA options.
+// WithIssuerPassword sets the given password as the configured certificate
+// issuer password in the CA options.
 func WithIssuerPassword(password []byte) Option {
 	return func(o *options) {
 		o.issuerPassword = password