Fix incorrect mysql examples

Command to create the neutron database was missing '>'.

Trivialfix

Closes-bug: #2000870

Change-Id: Id5555ec16bd855c0fae9b58e03038740e759bf2e
This commit is contained in:
Brian Haley 2023-01-03 11:14:45 -05:00
parent e444d543ed
commit 4fa85b9a99
3 changed files with 3 additions and 3 deletions

View File

@ -22,7 +22,7 @@ must create a database, service credentials, and API endpoints.
.. code-block:: console
MariaDB [(none)] CREATE DATABASE neutron;
MariaDB [(none)]> CREATE DATABASE neutron;
.. end

View File

@ -22,7 +22,7 @@ must create a database, service credentials, and API endpoints.
.. code-block:: console
MariaDB [(none)] CREATE DATABASE neutron;
MariaDB [(none)]> CREATE DATABASE neutron;
.. end

View File

@ -22,7 +22,7 @@ must create a database, service credentials, and API endpoints.
.. code-block:: console
MariaDB [(none)] CREATE DATABASE neutron;
MariaDB [(none)]> CREATE DATABASE neutron;
.. end