diff --git a/connector/saml/saml.go b/connector/saml/saml.go
index 7bc6730edd5dd0e866ab7a7f870a424424bd6584..4dac2aca6f4fb17eca526e5a6b2ffaf28613ccae 100644
--- a/connector/saml/saml.go
+++ b/connector/saml/saml.go
@@ -445,7 +445,7 @@ func (p *provider) validateStatus(status *status) error {
 func (p *provider) validateSubject(subject *subject, inResponseTo string) error {
 	// Optional according to the spec, but again, we're going to be strict here.
 	if len(subject.SubjectConfirmations) == 0 {
-		return fmt.Errorf("Subject contained no SubjectConfrimations")
+		return fmt.Errorf("Subject contained no SubjectConfirmations")
 	}
 
 	var errs []error