From 7fe83ad4a3b34fbf8dfec774a824d8f243bb4525 Mon Sep 17 00:00:00 2001 From: transistor Date: Sun, 28 Nov 2021 10:36:51 -0800 Subject: [PATCH] Fixed capitalization --- docs/posts/2021-11-making_an_emulator.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/posts/2021-11-making_an_emulator.md b/docs/posts/2021-11-making_an_emulator.md index 92008d5..9a9e3be 100644 --- a/docs/posts/2021-11-making_an_emulator.md +++ b/docs/posts/2021-11-making_an_emulator.md @@ -10,7 +10,7 @@ needed something that was straight-forward enough to work on without getting stu decisions or the need to learn a lot before diving in, which was the case with all the other projects on my plate at the time. My girlfriend suggested writing an [emulator](https://jabberwocky.ca/projects/moa/), and my first thought was to try emulating the -computer I made last year, [computie](https://jabberwocky.ca/projects/Computie/), since I already +computer I made last year, [Computie](https://jabberwocky.ca/projects/Computie/), since I already had a fair amount of code for it that I knew well, and the 68000 architecture and assembly language was still fresh in my mind. Naturally I chose to write it in Rust.