From 1564c3e181baa8c1bde1b53a46efa2946a93e31c Mon Sep 17 00:00:00 2001 From: Eddie Lebow Date: Wed, 18 Jan 2023 16:03:39 -0500 Subject: [PATCH] Minor formatting in Job Control documentation --- doc_src/language.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc_src/language.rst b/doc_src/language.rst index 69b2af50b..be642e4e2 100644 --- a/doc_src/language.rst +++ b/doc_src/language.rst @@ -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::