diff --git a/08-Designing-Kalman-Filters.ipynb b/08-Designing-Kalman-Filters.ipynb
index dfffe99d74d3663947a3886aa43cd6b5e89fdb02..2be51223cbf968d525e176920a1ef9ef6fd4e794 100644
--- a/08-Designing-Kalman-Filters.ipynb
+++ b/08-Designing-Kalman-Filters.ipynb
@@ -1803,7 +1803,7 @@
     "\n",
     "As I've mentioned, you may place the variables in $\\mathbf x$ in whatever order you choose. For example, you could define a 1D constant acceleration as $\\mathbf x = \\begin{bmatrix}\\ddot x & x & \\dot x\\end{bmatrix}^\\mathsf T$. I can't imagine why you would want that order, but it is possible.\n",
     "\n",
-    "Let's do something more reasonable. Design a second order filter for a robot moving in 2D, where $\\mathbf x = \\begin{bmatrix}x & y & \\dot x & \\dot y \\end{bmatrix}^\\mathsf T$. In this chapter we have been using $\\mathbf x = \\begin{bmatrix}x & \\dot x & \\dot y & \\dot y \\end{bmatrix}^\\mathsf T$.\n",
+    "Let's do something more reasonable. Design a second order filter for a robot moving in 2D, where $\\mathbf x = \\begin{bmatrix}x & y & \\dot x & \\dot y \\end{bmatrix}^\\mathsf T$. In this chapter we have been using $\\mathbf x = \\begin{bmatrix}x & \\dot x & y & \\dot y \\end{bmatrix}^\\mathsf T$.\n",
     "\n",
     "Why would you choose a different ordering? As you'll see in a moment, changing the order of $\\mathbf x$ changes the order of most of the rest of the filter's matrices. Depending on what data you want to inspect, such as the correlations in $\\mathbf P$, various orderings of $\\mathbf x$ can make that easier or more difficult.\n",
     "\n",