diff --git a/Cubical.Data.Fin.Recursive.Base.html b/Cubical.Data.Fin.Recursive.Base.html
index 4af1a72ccc..1e61418fec 100644
--- a/Cubical.Data.Fin.Recursive.Base.html
+++ b/Cubical.Data.Fin.Recursive.Base.html
@@ -33,4 +33,8 @@
→ (fn : Fin k) → P fn
elim {k = suc k} P fz fs zero = fz
elim {k = suc k} P fz fs (suc x) = fs x (elim P fz fs x)
+
+toℕ : Fin k → ℕ
+toℕ {suc k} zero = zero
+toℕ {suc k} (suc n) = suc (toℕ n)