summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2013-05-19 00:40:58 -0700
committerYves Senn <yves.senn@gmail.com>2013-05-19 00:40:58 -0700
commit42b1a51aacf68bfef8eaa5c257b0368f6be1b559 (patch)
treef985702b0835abdff65f00576dbf3dfcec519f92
parent074c4e5675f17977076da2e3d8bd8006b6ffdf7b (diff)
parent2d1875960212d40cb348cefb29ac78828498bc66 (diff)
downloadgitlab-ce-42b1a51aacf68bfef8eaa5c257b0368f6be1b559.tar.gz
Merge pull request #3987 from bbodenmiller/patch-3
Typo fix in database.md closes 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