From 4aec353aec62c76fb200f30118852002cc39eed9 Mon Sep 17 00:00:00 2001 From: pmcgrath Date: Sun, 14 Jan 2018 12:34:45 +0000 Subject: [PATCH] 1170 - Fix comment typos BsaeDN should be BaseDN --- connector/ldap/ldap.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/connector/ldap/ldap.go b/connector/ldap/ldap.go index 585907cc..a92bd87f 100644 --- a/connector/ldap/ldap.go +++ b/connector/ldap/ldap.go @@ -84,7 +84,7 @@ type Config struct { // User entry search configuration. UserSearch struct { - // BsaeDN to start the search from. For example "cn=users,dc=example,dc=com" + // BaseDN to start the search from. For example "cn=users,dc=example,dc=com" BaseDN string `json:"baseDN"` // Optional filter to apply when searching the directory. For example "(objectClass=person)" @@ -108,7 +108,7 @@ type Config struct { // Group search configuration. GroupSearch struct { - // BsaeDN to start the search from. For example "cn=groups,dc=example,dc=com" + // BaseDN to start the search from. For example "cn=groups,dc=example,dc=com" BaseDN string `json:"baseDN"` // Optional filter to apply when searching the directory. For example "(objectClass=posixGroup)"