From 0ad97ed9e78f13341377525f9976d2fea425f8ad Mon Sep 17 00:00:00 2001 From: Ariejan de Vroom Date: Fri, 29 Aug 2014 14:16:43 +0200 Subject: [PATCH] Fix links --- .../posts/2014-08-29-synchronize-goroutines-in-your-tests.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/posts/2014-08-29-synchronize-goroutines-in-your-tests.md b/content/posts/2014-08-29-synchronize-goroutines-in-your-tests.md index ac45c55..6801f32 100644 --- a/content/posts/2014-08-29-synchronize-goroutines-in-your-tests.md +++ b/content/posts/2014-08-29-synchronize-goroutines-in-your-tests.md @@ -13,7 +13,7 @@ summary: | under test in a function and test that. Sometimes, however, you really need to validate that those channels behave the way you want. --- -I have been working on an [emulator for the MOS 6502 Microprocessor, written in Go](1). As +I have been working on an [emulator for the MOS 6502 Microprocessor, written in Go][1]. As part of this package I have also implemented a minimal 6551 Asynchronous Communication Interface Adapter. The 6551 provides serial IO and is easy to use in combination with the 6502. @@ -90,7 +90,7 @@ the writing of the byte with the output appearing on the output channel. This is an example of simple synchronization using a seperate channel, in this case `chan bool`. It worked great in my tests to verify data was actually written to the output channel. -[Read more about my i6502 project](2) +[Read more about my i6502 project][2] [1]: https://github.com/ariejan/i6502 [2]: http://ariejan.github.io/i6502/