Skip to content

Commit c60de0f

Browse files
authored
*: fix unclosed tags in 2.1 (pingcap#2697)
1 parent e52ab8c commit c60de0f

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

best-practices/haproxy-best-practices.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -113,18 +113,18 @@ haproxy --help
113113
| `-vv` | Displays the version, build options, libraries versions and usable pollers. |
114114
| `-d` | Enables debug mode. |
115115
| `-db` | Disables background mode and multi-process mode. |
116-
| `-dM [<byte>]` | Forces memory poisoning, which means that each and every memory region allocated with malloc() or pool_alloc2() will be filled with \<byte> before being passed to the caller. |
116+
| `-dM [<byte>]` | Forces memory poisoning, which means that each and every memory region allocated with malloc() or pool_alloc2() will be filled with `<byte>` before being passed to the caller. |
117117
| `-V` | Enables verbose mode (disables quiet mode). |
118118
| `-D` | Starts as a daemon.|
119-
| `-C <dir>` | Changes to directory \<dir> before loading configuration files. |
119+
| `-C <dir>` | Changes to directory `<dir>` before loading configuration files. |
120120
| `-W` | Master-worker mode. |
121121
| `-q` | Sets "quiet" mode: This disables some messages during the configuration parsing and during startup. |
122122
| `-c` | Only performs a check of the configuration files and exits before trying to bind. |
123-
| `-n <limit>` | Limits the per-process connection limit to \<limit>. |
124-
| `-m <limit>` | Limits the total allocatable memory to \<limit> megabytes across all processes. |
125-
| `-N <limit>` | Sets the default per-proxy maxconn to \<limit> instead of the builtin default value (usually 2000). |
126-
| `-L <name>` | Changes the local peer name to \<name>, which defaults to the local hostname. |
127-
| `-p <file>` | Writes all processes' PIDs into \<file> during startup. |
123+
| `-n <limit>` | Limits the per-process connection limit to `<limit>`. |
124+
| `-m <limit>` | Limits the total allocatable memory to `<limit>` megabytes across all processes. |
125+
| `-N <limit>` | Sets the default per-proxy maxconn to `<limit>` instead of the builtin default value (usually 2000). |
126+
| `-L <name>` | Changes the local peer name to `<name>`, which defaults to the local hostname. |
127+
| `-p <file>` | Writes all processes' PIDs into `<file>` during startup. |
128128
| `-de` | Disables the use of epoll(7). epoll(7) is available only on Linux 2.6 and some custom Linux 2.4 systems. |
129129
| `-dp` | Disables the use of poll(2). select(2) might be used instead. |
130130
| `-dS` | Disables the use of splice(2), which is broken on older kernels. |

sql-statements/sql-statement-revoke-privileges.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ category: reference
55
aliases: ['/docs/v2.1/reference/sql/statements/revoke-privileges/']
66
---
77

8-
# REVOKE <privileges>
8+
# `REVOKE <privileges>`
99

1010
This statement removes privileges from an existing user.
1111

@@ -81,6 +81,6 @@ This statement is understood to be fully compatible with MySQL. Any compatibilit
8181

8282
## See also
8383

84-
* [GRANT <privileges>](/sql-statements/sql-statement-grant-privileges.md)
84+
* [`GRANT <privileges>`](/sql-statements/sql-statement-grant-privileges.md)
8585
* [SHOW GRANTS](/sql-statements/sql-statement-show-grants.md)
8686
* [Privilege Management](/privilege-management.md)

sql-statements/sql-statement-set-names.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,5 +77,5 @@ This statement is understood to be fully compatible with MySQL. Any compatibilit
7777
## See also
7878

7979
* [SHOW \[GLOBAL|SESSION\] VARIABLES](/sql-statements/sql-statement-show-variables.md)
80-
* [SET <variable>](/sql-statements/sql-statement-set-variable.md)
80+
* [`SET <variable>]`(/sql-statements/sql-statement-set-variable.md)
8181
* [Character Set Support](/character-set-and-collation.md)

sql-statements/sql-statement-set-transaction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,5 @@ mysql> SHOW SESSION VARIABLES like 'transaction_isolation';
6565

6666
## See also
6767

68-
* [SET \[GLOBAL|SESSION\] <variable>](/sql-statements/sql-statement-set-variable.md)
68+
* [`SET [GLOBAL|SESSION] <variable>`](/sql-statements/sql-statement-set-variable.md)
6969
* [Isolation Levels](/transaction-isolation-levels.md)

sql-statements/sql-statement-show-privileges.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,4 @@ This statement is understood to be fully compatible with MySQL. Any compatibilit
6565
## See also
6666

6767
* [SHOW GRANTS](/sql-statements/sql-statement-show-grants.md)
68-
* [GRANT <privileges>](/sql-statements/sql-statement-grant-privileges.md)
68+
* [`GRANT <privileges>`](/sql-statements/sql-statement-grant-privileges.md)

0 commit comments

Comments
 (0)