diff --git a/doc/faq.html b/doc/faq.html index c1eea109c96fa1bbed049e73d16e36e0fd8deb13..99d8f7b86e90e61384dd382425322e5e2fce2d2a 100644 --- a/doc/faq.html +++ b/doc/faq.html @@ -173,7 +173,7 @@ <hr width="100%"> <h1><a name="4"></a>4. Running</h1> <h2><a name="4.1"></a>4.1. How do I open a file with a name beginning with '+' from the command line?</h2> -<blockquote><p>If a command line option that begins with '+' is followed by at least one more option, the former is always treated as a starting line number and the latter is always treated as a filename. If a command line option that begins with '+' isn't followed by any more options, it's always treated as a filename. Examples:</p> +<blockquote><p>If a command line option that begins with '+' is followed by another option, the former is always treated as a starting line number and the latter is always treated as a filename. If a command line option that begins with '+' isn't followed by another option, it's always treated as a filename. Examples:</p> <p>To open '+filename.txt' starting on line 1: <b>nano +filename.txt</b><br> To open '+filename.txt' starting on line 10: <b>nano +10 +filename.txt</b><br> To open '+filename.txt' starting on line 1 and 'filename.txt' starting on line 10 (if nano has been compiled with multibuffer support): <b>nano +1 +filename.txt +20 filename.txt</b></p></blockquote>