aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJohannes Stoelp <johannes.stoelp@gmail.com>2024-12-07 02:06:15 +0100
committerJohannes Stoelp <johannes.stoelp@gmail.com>2024-12-07 02:06:15 +0100
commit73c7330d554cf1e9147de4f7bc03417a18c7c34a (patch)
tree323d69cdb05d6beebd2023f3133b09e74a379636
parent9c3c3fd923d894d2351eb22129ea693eb98fa8ff (diff)
downloadjuicebox-asm-73c7330d554cf1e9147de4f7bc03417a18c7c34a.tar.gz
juicebox-asm-73c7330d554cf1e9147de4f7bc03417a18c7c34a.zip
fixup markdown links
-rw-r--r--README.md2
-rw-r--r--examples/bf_vm.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 29178ee..6ca332c 100644
--- a/README.md
+++ b/README.md
@@ -64,7 +64,7 @@ The [`examples/`](examples/) folder provides additional examples:
block* on first execution when running a VM guest image. For reference an
interepter is also implemented.
- [`bf_vm.rs`](examples/bf_vm.rs) implements a
- [brainfuck][https://en.wikipedia.org/wiki/Brainfuck] jit compiler
+ [brainfuck](https://en.wikipedia.org/wiki/Brainfuck) jit compiler
and interpreter.
## git hook for local development
diff --git a/examples/bf_vm.rs b/examples/bf_vm.rs
index 9045f24..ce2a682 100644
--- a/examples/bf_vm.rs
+++ b/examples/bf_vm.rs
@@ -1,7 +1,7 @@
//! Brainfuck VM.
//!
//! This example implements a simple
-//! [brainfuck][https://en.wikipedia.org/wiki/Brainfuck] interpreter
+//! [brainfuck](https://en.wikipedia.org/wiki/Brainfuck) interpreter
//! [`BrainfuckInterp`] and a jit compiler [`BrainfuckJit`].
//!
//! Brainfuck is an esoteric programming languge existing of 8 commands.