From 1a233d16ce1ed075b6ad9d63ffcb2aca3c324bad Mon Sep 17 00:00:00 2001 From: Antoine Date: Tue, 10 Oct 2017 17:08:18 +0200 Subject: [PATCH] Update fake-dotnetcore.md fix url, the next word was included in the url, for instance: https://github.com/fsharp/FAKE/blob/master/build.fsx Note would give https://github.com/fsharp/FAKE/blob/master/build.fsxNote as url --- help/markdown/fake-dotnetcore.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/help/markdown/fake-dotnetcore.md b/help/markdown/fake-dotnetcore.md index 94b487099bd..59de11d8417 100644 --- a/help/markdown/fake-dotnetcore.md +++ b/help/markdown/fake-dotnetcore.md @@ -26,8 +26,8 @@ See [Fake command line](fake-commandline.html) ## Buildserver support -AppVeyor: https://github.com/fsharp/FAKE/blob/master/appveyor.yml -Travis: https://github.com/fsharp/FAKE/blob/master/.travis.yml +AppVeyor: [https://github.com/fsharp/FAKE/blob/master/appveyor.yml](https://github.com/fsharp/FAKE/blob/master/appveyor.yml) +Travis: [https://github.com/fsharp/FAKE/blob/master/.travis.yml](https://github.com/fsharp/FAKE/blob/master/.travis.yml) ## Why? @@ -65,7 +65,7 @@ The disadvantage is that you need to have a dotnet sdk installed. ## Examples -- See https://github.com/fsharp/FAKE/blob/master/build.fsx +- See [https://github.com/fsharp/FAKE/blob/master/build.fsx](https://github.com/fsharp/FAKE/blob/master/build.fsx) Note that with the "new" API you should call the modules directly instead of opening them. Therefore this example is actually pretty bad because it just opened everything (for minimal diff to the "normal" build.fsx)