Fix spacing in MySQL arguments

Fix #1899

[ci skip]
This commit is contained in:
Dan Rice 2015-07-23 20:34:41 -04:00
parent 6bcae280c3
commit 013b260a1b

View file

@ -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;