summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Bodenmiller <bbodenmiller@hotmail.com>2013-05-18 06:39:33 -0600
committerBen Bodenmiller <bbodenmiller@hotmail.com>2013-05-18 06:39:33 -0600
commit2d1875960212d40cb348cefb29ac78828498bc66 (patch)
treed9d0767da737019b34e185c08b70d5a65e2198aa
parent143a03e551162680ba029ea2078ce453c40c49ab (diff)
downloadgitlab-ce-2d1875960212d40cb348cefb29ac78828498bc66.tar.gz
Typo fix closes gitlabhq/gitlabhq/3984
-rw-r--r--doc/install/databases.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/install/databases.md b/doc/install/databases.md
index a198e726aa0..2d94aa9b4a3 100644
--- a/doc/install/databases.md
+++ b/doc/install/databases.md
@@ -20,7 +20,7 @@ GitLab supports the following databases:
# Create the GitLab production database
mysql> CREATE DATABASE IF NOT EXISTS `gitlabhq_production` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`;
- # Grant the GitLab user necessary permissopns on the table.
+ # Grant the GitLab user necessary permissions on the table.
mysql> GRANT SELECT, LOCK TABLES, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER ON `gitlabhq_production`.* TO 'gitlab'@'localhost';
# Quit the database session