From 5c7c8305f7c55b3206358f1606b9bcae6a9359a2 Mon Sep 17 00:00:00 2001 From: Kurt Schelfthout Date: Sun, 6 Sep 2015 14:55:55 +0100 Subject: [PATCH] Make links in head https. See issue #27. --- docs/tools/generate.fsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/tools/generate.fsx b/docs/tools/generate.fsx index 3b3d463..2407741 100644 --- a/docs/tools/generate.fsx +++ b/docs/tools/generate.fsx @@ -6,8 +6,8 @@ // Binaries that have XML documentation (in a corresponding generated XML file) let referenceBinaries = [ "Streams.Core.dll" ] // Web site location for the generated documentation -let website = "http://nessos.github.io/Streams" -let githubLink = "http://github.com/nessos/Streams" +let website = "https://nessos.github.io/Streams" +let githubLink = "https://github.com/nessos/Streams" // Specify more information about your project let info = @@ -93,4 +93,4 @@ CleanDir output CreateDir output copyFiles() buildDocumentation() -buildReference() \ No newline at end of file +buildReference()