From aabd1a89fd344ffc1383a72c6c7e9005866ff409 Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Wed, 3 Aug 2016 09:35:43 +0000 Subject: [PATCH] Add apostrophe to examples for consistency --- doc/administration/auth/ldap-ee.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/administration/auth/ldap-ee.md b/doc/administration/auth/ldap-ee.md index b040607e12529b..3af8d98ff0da82 100644 --- a/doc/administration/auth/ldap-ee.md +++ b/doc/administration/auth/ldap-ee.md @@ -47,7 +47,7 @@ Edit `/etc/gitlab/gitlab.rb`: gitlab_rails['ldap_servers'] = YAML.load <<-EOS main: # snip... - group_base: ou=groups,dc=example,dc=com + group_base: 'ou=groups,dc=example,dc=com' EOS ``` @@ -63,7 +63,7 @@ production: servers: main: # snip... - group_base: ou=groups,dc=example,dc=com + group_base: 'ou=groups,dc=example,dc=com' ``` [Restart GitLab][restart] for the changes to take effect. @@ -94,8 +94,8 @@ Edit `/etc/gitlab/gitlab.rb`: gitlab_rails['ldap_servers'] = YAML.load <<-EOS main: # snip... - group_base: ou=groups,dc=example,dc=com - admin_group: my_admin_group + group_base: 'ou=groups,dc=example,dc=com' + admin_group: 'my_admin_group' EOS ``` @@ -111,8 +111,8 @@ production: servers: main: # snip... - group_base: ou=groups,dc=example,dc=com - admin_group: my_admin_group + group_base: 'ou=groups,dc=example,dc=com' + admin_group: 'my_admin_group' ``` [Restart GitLab][restart] for the changes to take effect. -- GitLab