diff options
Diffstat (limited to 'doc/grammar.html')
-rw-r--r-- | doc/grammar.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/grammar.html b/doc/grammar.html index dd2ea62..ddc746e 100644 --- a/doc/grammar.html +++ b/doc/grammar.html @@ -133,12 +133,12 @@ arguments, the <em>arglist</em>, then executes into a (possibly empty) <em>instruction</em>. </li> <li> Some <em>builtin</em>s are special because they also take a non-empty <em>blocklist</em> after their <em>arglist</em>. For instance, -the <a href="foreground.html">foreground</a> command takes an empty +the <a href="foreground.html">;</a> command takes an empty <em>arglist</em> and one <em>block</em>: <pre> #!/command/execlineb -P - foreground { sleep 1 } echo blah + ; { sleep 1 } echo blah </pre> is a valid <a href="execlineb.html">execlineb</a> script. -The <a href="foreground.html">foreground</a> command uses the +The <a href="foreground.html">;</a> command uses the <tt>sleep 1</tt> <em>block</em> then execs into the remaining <tt>echo blah</tt> <em>instruction</em>. </li> </ul> |