diff --git a/media/docs/cute/04_algorithms.md b/media/docs/cute/04_algorithms.md
index 75fc6ab0..353e9cc4 100644
--- a/media/docs/cute/04_algorithms.md
+++ b/media/docs/cute/04_algorithms.md
@@ -166,7 +166,7 @@ and the `(...)` to the right of the `=>` describes C.
1. `(V) x (V) => (V)`. The element-wise product of vectors: Cv += Av Bv. Dispatches to FMA or MMA.
-2. `(M) x (N) => (M,N)`. The outer product of vectors: Cmn += Am B_n. Dispatches to (4) with V=1.
+2. `(M) x (N) => (M,N)`. The outer product of vectors: Cmn += Am Bn. Dispatches to (4) with V=1.
3. `(M,K) x (N,K) => (M,N)`. The product of matrices: Cmn += Amk Bnk. Dispatches to (2) for each K.