From 5b18bdf6ca7cc91a2b4efb84a1ad0812f5430ce8 Mon Sep 17 00:00:00 2001 From: Masashi Fujita Date: Mon, 20 Apr 2020 00:33:54 +0900 Subject: [PATCH] Fix a wrong decoration Should be included inside of \`\` --- help/markdown/core-targets.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/help/markdown/core-targets.md b/help/markdown/core-targets.md index 7603cca8a91..5eee987d228 100644 --- a/help/markdown/core-targets.md +++ b/help/markdown/core-targets.md @@ -101,7 +101,7 @@ Target.runOrDefault "Deploy" Now we have the following options: - `fake run build.fsx -t "Build"` --> starts the *Build* target and runs the dependency *Clean* -- `fake run build.fsx -t "Build"` --single-target --> starts only the *Build* target and runs no dependencies +- `fake run build.fsx -t "Build" --single-target` --> starts only the *Build* target and runs no dependencies - `fake run build.fsx -s -t Build` --> starts only the *Build* target and runs no dependencies - `fake run build.fsx` --> starts the Deploy target (and runs the dependencies *Clean* and *Build*)