diff options
author | Timothy Gu <timothygu99@gmail.com> | 2015-03-22 20:47:18 -0700 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-03-23 17:08:08 +0100 |
commit | ecba41bfd3a1bb222db99bac10731a9e30c7e18c (patch) | |
tree | 97d1884c9b592b5d2dda00b3fb31d0b63a6ad84a /doc/utils.texi | |
parent | aba3030a5593ceb0b9390cbc4c58642f372a17a3 (diff) | |
download | ffmpeg-ecba41bfd3a1bb222db99bac10731a9e30c7e18c.tar.gz |
doc: More semantic markup using @samp and @var where appropriate
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'doc/utils.texi')
-rw-r--r-- | doc/utils.texi | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/utils.texi b/doc/utils.texi index 79bf2a22ac..6517ac0a97 100644 --- a/doc/utils.texi +++ b/doc/utils.texi @@ -12,17 +12,17 @@ explicitly specified. The following rules are applied: @itemize @item -@code{'} and @code{\} are special characters (respectively used for +@samp{'} and @samp{\} are special characters (respectively used for quoting and escaping). In addition to them, there might be other special characters depending on the specific syntax where the escaping and quoting are employed. @item -A special character is escaped by prefixing it with a '\'. +A special character is escaped by prefixing it with a @samp{\}. @item -All characters enclosed between '' are included literally in the -parsed string. The quote character @code{'} itself cannot be quoted, +All characters enclosed between @samp{''} are included literally in the +parsed string. The quote character @samp{'} itself cannot be quoted, so you may need to close the quote and escape it. @item @@ -71,7 +71,7 @@ Escaping and quoting can be mixed together: @end example @item -To include a literal @code{\} you can use either escaping or quoting: +To include a literal @samp{\} you can use either escaping or quoting: @example 'c:\foo' can be written as c:\\foo @end example |