diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2023-05-24 23:21:07 +0200 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2023-05-25 00:48:56 +0200 |
commit | 9f3c99f6e966c2571183c160d2b22bae5df8b1cd (patch) | |
tree | 11d00cf99bfb80ec3cae469bb5fb8b2ec30b1303 | |
parent | c67f71782d24180ce2e3a16112018dc095dba09f (diff) | |
download | blog-9f3c99f6e966c2571183c160d2b22bae5df8b1cd.tar.gz blog-9f3c99f6e966c2571183c160d2b22bae5df8b1cd.zip |
fix md codeblock type
-rw-r--r-- | content/2023-01-14-xpost-matcha-threads.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/content/2023-01-14-xpost-matcha-threads.md b/content/2023-01-14-xpost-matcha-threads.md index f627843..9500300 100644 --- a/content/2023-01-14-xpost-matcha-threads.md +++ b/content/2023-01-14-xpost-matcha-threads.md @@ -39,7 +39,7 @@ int main() { ``` Which gives the following output when being run: -```text +```txt I like green @@ -51,7 +51,7 @@ underlying cooperative-multitasking and implement such a `yield()` function as shown in the example above. Looking at the final implementation, the yield function does the following: -```text +```txt yield: 1. function prologue 2. push callee-saved regs to current stack |