1 2 3 4 5 6 7 8 9 10 11 12 13
|
Index: fenics-basix/cpp/basix/precompute.h
===================================================================
--- fenics-basix.orig/cpp/basix/precompute.h 2025-12-13 13:33:12.257070171 +0100
+++ fenics-basix/cpp/basix/precompute.h 2025-12-13 13:35:16.741995997 +0100
@@ -61,7 +61,7 @@
/// 1, so the 1st entry of the output is 4.
///
/// -# Next, we look at the 2nd entry. `P[2]` is 0. This is less than 2,
-/// so we look at `P[0]. `P[0]` is 1. This is less than 2, so we look at
+/// so we look at `P[0]`. `P[0]` is 1. This is less than 2, so we look at
/// `P[1]`. `P[1]` is 4. This is greater than 2, so the 2nd entry of the
/// output is 4.
///
|