diff options
author | 2022-07-11 22:39:42 +0200 | |
---|---|---|
committer | 2022-07-11 13:39:42 -0700 | |
commit | d3ec0e204f2442b22ed26244e26806a07627159c (patch) | |
tree | d9746ba01b813b47ccd1351a0d3a949bd55cca70 | |
parent | 9bd8e6e604becce8ec9d27e56cca894533027080 (diff) | |
download | bun-d3ec0e204f2442b22ed26244e26806a07627159c.tar.gz bun-d3ec0e204f2442b22ed26244e26806a07627159c.tar.zst bun-d3ec0e204f2442b22ed26244e26806a07627159c.zip |
Fixed broken links on the Bun.serve benchmark (#590)
Fixed the broken links to the Bun.serve benchmark sources.
-rw-r--r-- | packages/bun-landing/page.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/bun-landing/page.tsx b/packages/bun-landing/page.tsx index f508d7038..09e254161 100644 --- a/packages/bun-landing/page.tsx +++ b/packages/bun-landing/page.tsx @@ -371,17 +371,17 @@ export default ({ inlineCSS }) => ( <BarGraphLabel name="bun" version="v0.1.0" - source="https://github.com/oven-sh/bun/bench/react-hello-world.jsx" + source="https://github.com/oven-sh/bun/blob/main/bench/react-hello-world.jsx" /> <BarGraphLabel name="node" version="v18.1.0" - source="https://github.com/oven-sh/bun/bench/react-hello-world.node.jsx" + source="https://github.com/oven-sh/bun/blob/main/bench/react-hello-world.node.jsx" /> <BarGraphLabel name="deno" version="v1.23.2" - source="https://github.com/oven-sh/bun/bench/react-hello-world.deno.jsx" + source="https://github.com/oven-sh/bun/blob/main/bench/react-hello-world.deno.jsx" /> </div> </div> |