From 013b260a1b3367e0d7b50b84bcd36367ec1f9031 Mon Sep 17 00:00:00 2001 From: Dan Rice Date: Thu, 23 Jul 2015 20:34:41 -0400 Subject: [PATCH] Fix spacing in MySQL arguments Fix #1899 [ci skip] --- doc/installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/installation.md b/doc/installation.md index b8ffe942..d65cbe21 100644 --- a/doc/installation.md +++ b/doc/installation.md @@ -41,7 +41,7 @@ There are two methods of downloading Tracks: You need to create a database and database-user to use with Tracks. For this, you can use MySQL Administrator or go into a terminal and issue the following commands: - mysql -uroot -p + mysql -u root -p mysql> CREATE DATABASE tracks; mysql> GRANT ALL PRIVILEGES ON tracks.* TO yourmysqluser@localhost \ IDENTIFIED BY 'password-goes-here' WITH GRANT OPTION;