Browse Source

wizzardo-inline: Fix source code links (#5491)

Facundo Domínguez 5 years ago
parent
commit
a0f4524a77

+ 3 - 3
frameworks/Haskell/wizzardo-inline/README.md

@@ -2,9 +2,9 @@
 
 ### Test Type Implementation Source Code
 
-* [JSON](benchmarks/wizzardo-http/src/Main.hs)
-* [PLAINTEXT](benchmarks/wizzardo-http/src/Main.hs)
-* [DB](benchmarks/wizzardo-http/src/DbHandler.hs)
+* [JSON](wizzardo-http-benchmark/src/main/haskell/Main.hs)
+* [PLAINTEXT](wizzardo-http-benchmark/src/main/haskell/Main.hs)
+* [DB](wizzardo-http-benchmark/src/main/haskell/DbHandler.hs)
 
 ## Important Libraries
 

+ 1 - 1
frameworks/Haskell/wizzardo-inline/wizzardo-http-benchmark/README.md

@@ -7,4 +7,4 @@ Furtheremore, an experimental interface of inline-java is used, where
 handled correctly on the Haskell side.
 
 Running the benchmark requires the framework from
-https://github.com/TechEmpower/FrameworkBenchmarks/compare/master...facundominguez:fd/wizzardo-http-inline-java
+https://github.com/TechEmpower/FrameworkBenchmarks

+ 2 - 1
frameworks/Haskell/wizzardo-inline/wizzardo-http-benchmark/src/main/haskell/DbHandler.hs

@@ -9,7 +9,8 @@
 {-# LANGUAGE TypeOperators #-}
 {-# OPTIONS_GHC -Wno-name-shadowing #-}
 -- The code in Java here has been copied from the benchmark wizzardo-http
--- in https://github.com/TechEmpower/FrameworkBenchmarks
+-- in
+-- https://github.com/TechEmpower/FrameworkBenchmarks/blob/master/frameworks/wizzardo-http
 module DbHandler (createDbHandler) where
 
 import Control.Monad.IO.Class.Linear (MonadIO)