diff options
author | Nobuyoshi Nakada <[email protected]> | 2022-09-03 23:47:46 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2022-09-03 23:47:46 +0900 |
commit | 0111dc5b79a8cfe81f467cfcf589dd4042e0384c (patch) | |
tree | bb9fc0be377150fbce423723932a04bb79a1880a /doc/command_injection.rdoc | |
parent | baf050100d44ffb10afb345543db4a6b20f1b285 (diff) |
[DOC] Escape backqoute method not to be converted to smart quotes
Diffstat (limited to 'doc/command_injection.rdoc')
-rw-r--r-- | doc/command_injection.rdoc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/command_injection.rdoc b/doc/command_injection.rdoc index 8f1303bcf7..af09be23f0 100644 --- a/doc/command_injection.rdoc +++ b/doc/command_injection.rdoc @@ -8,7 +8,7 @@ They should not be called with unknown or unsanitized commands. These methods include: - Kernel.system -- {`command` (backtick method)}[rdoc-ref:Kernel#`] +- {\`command` (backtick method)}[rdoc-ref:Kernel#`] (also called by the expression <tt>%x[command]</tt>). - IO.popen(command). - IO.read(command). |