From ad7865f7aac990997b89940382a894a97b94e3a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADt=20Brunner?= Date: Wed, 27 Apr 2022 19:38:33 +0200 Subject: [PATCH] Fix links on the main page They're all broken! --- client/examples/Main.purs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/examples/Main.purs b/client/examples/Main.purs index 264976c9..69277a12 100644 --- a/client/examples/Main.purs +++ b/client/examples/Main.purs @@ -33,7 +33,7 @@ main = ] where fromExample { title, source } = - link ("https://github.com/purescript/trypurescript/master/client/examples/" <> source) (text title) + link ("https://github.com/purescript/trypurescript/blob/master/client/examples/" <> source) (text title) examples = [ { title: "Algebraic Data Types"