From 5d630f62016dfa4f8fdb4b60fc40e50a6b354adf Mon Sep 17 00:00:00 2001 From: Carl Fredrik Samson Date: Thu, 14 Jan 2021 21:50:36 +0100 Subject: [PATCH] fix dead links re #33 --- src/introduction.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/introduction.md b/src/introduction.md index 74e19ef..59db955 100644 --- a/src/introduction.md +++ b/src/introduction.md @@ -24,8 +24,8 @@ The way you should go about it is to read this book first, then continue reading the [articles from stejpang](https://stjepang.github.io/) to learn more about runtimes and how they work, especially: -1. [Build your own block_on()](https://stjepang.github.io/2020/01/25/build-your-own-block-on.html) -2. [Build your own executor](https://stjepang.github.io/2020/01/31/build-your-own-executor.html) +1. [Build your own block_on()](https://web.archive.org/web/20200511234503/https://stjepang.github.io/2020/01/25/build-your-own-block-on.html) +2. [Build your own executor](https://web.archive.org/web/20200207092849/https://stjepang.github.io/2020/01/31/build-your-own-executor.html) I've limited myself to a 200 line main example (hence the title) to limit the scope and introduce an example that can easily be explored further.