diff --git a/site-src/ccgoto.mdx b/site-src/ccgoto.mdx
index 1434af7..fb15c94 100644
--- a/site-src/ccgoto.mdx
+++ b/site-src/ccgoto.mdx
@@ -146,7 +146,7 @@ operator.
The `k` that `call/cc` calls its argument with represents, roughly, the rest of the computation.
The “current continuation” is what will be executed next at the point that `call/cc` is called.
-Incidentally, this helps me understand scheme’s multiple return values; `(values v1 v2 ...)` is just (call/cc (lambda (k) (k v1 v2 ...))).
+Incidentally, this helps me understand scheme’s multiple return values; `(values v1 v2 ...)` is just (call/cc (lambda (k) (k v1 v2 ...))).
I recommend reading about continuations in Dybvig’s [The Scheme Programming Language](https://www.scheme.com/tspl4/further.html#g63)
if you’re (justly) dissatisfied with my explanation or just want to learn more precisely how they work and their applications.
diff --git a/site-src/hx-boost.mdx b/site-src/hx-boost.mdx
index 57ecc83..79e5b24 100644
--- a/site-src/hx-boost.mdx
+++ b/site-src/hx-boost.mdx
@@ -16,7 +16,7 @@ Importantly, literally nothing changes for (cool) users who (righteously) block
It is perfect [progressive enhancement](https://en.wikipedia.org/wiki/Progressive_enhancement).
## Steps
-1. Add htmx to your `
{``}
+1. Add htmx to your ``: {``}
2. Add `hx-boost="true"` to your ``.
3. Add `hx-preserve="true"` to stuff that is static between pages (probably a sidebar/footer). Add a unique `id` if it doesn't already have one.
4. Be happy that it works with and without JavaScript.