Minor formatting in Job Control documentation

This commit is contained in:
Eddie Lebow 2023-01-18 16:03:39 -05:00 committed by Fabian Boehm
parent 093c580b5c
commit 1564c3e181

View file

@ -242,7 +242,7 @@ As a convenience, the pipe ``&|`` redirects both stdout and stderr to the same p
Job control
-----------
When you start a job in fish, fish itself will pause, and give control of the terminal to the program just started. Sometimes, you want to continue using the commandline, and have the job run in the background. To create a background job, append an \& (ampersand) to your command. This will tell fish to run the job in the background. Background jobs are very useful when running programs that have a graphical user interface.
When you start a job in fish, fish itself will pause, and give control of the terminal to the program just started. Sometimes, you want to continue using the commandline, and have the job run in the background. To create a background job, append an ``&`` (ampersand) to your command. This will tell fish to run the job in the background. Background jobs are very useful when running programs that have a graphical user interface.
Example::