diff --git a/Documentation.html b/Documentation.html
index a260824ad9..b4844065ec 100755
--- a/Documentation.html
+++ b/Documentation.html
@@ -557,7 +557,7 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
Starting with Version 2.3.0 phpMyAdmin offers a lot of Features
to work with Master / Foreign - Tables. To use those as well as
- the bookmarkfeature you will need to create a new db.
+ the bookmark feature you will need to create a new db.
To use this functionality as superuser create a new database:
@@ -568,7 +568,7 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
Note that controluser must have SELECT, INSERT and DELETE
privileges on the bookmark table. Here is a query to set up
- those privileges (using "pma" as the controluser:
+ those privileges (using "pma" as the controluser):
GRANT SELECT,INSERT,DELETE ON to
'pma'@localhost;
@@ -591,13 +591,13 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
- set up a PMA database as described above
- within this database create a table following this scheme:
- CREATE TABLE bookmark (
- id int(11) DEFAULT '0' NOT NULL auto_increment,
- dbase varchar(255) NOT NULL,
- user varchar(255) NOT NULL,
- label varchar(255) NOT NULL,
- query text NOT NULL,
- PRIMARY KEY (id)
+ CREATE TABLE bookmark (
+ id int(11) DEFAULT '0' NOT NULL auto_increment,
+ dbase varchar(255) NOT NULL,
+ user varchar(255) NOT NULL,
+ label varchar(255) NOT NULL,
+ query text NOT NULL,
+ PRIMARY KEY (id)
) TYPE=MyISAM COMMENT='Bookmarks';