Skip to content

Commit

Permalink
Fix typo in error message
Browse files Browse the repository at this point in the history
Signed-off-by: Louis Jacomet <louis@gradle.com>
  • Loading branch information
ljacomet committed Mar 31, 2023
1 parent ab9624f commit 6abe49b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ private String extractSan(X509Certificate cert) throws FulcioVerificationExcepti
}
if (sans.size() > 1) {
throw new FulcioVerificationException(
"Fulcio ceritifcate must only have 1 SAN, but found " + sans.size());
"Fulcio certificate must only have 1 SAN, but found " + sans.size());
}
var san = sans.stream().findFirst().get();
var type = (Integer) san.get(0);
Expand Down

0 comments on commit 6abe49b

Please sign in to comment.