From ad8aca83aed1f91ee2ca6cf915f9c2b8d7cb913b Mon Sep 17 00:00:00 2001 From: Simon Kirby Date: Tue, 20 Jul 2021 14:17:38 +0100 Subject: [PATCH] Fix typo in markdown Typo in class 'filterpy' --- 06-Multivariate-Kalman-Filters.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/06-Multivariate-Kalman-Filters.ipynb b/06-Multivariate-Kalman-Filters.ipynb index 566f432..479de5e 100644 --- a/06-Multivariate-Kalman-Filters.ipynb +++ b/06-Multivariate-Kalman-Filters.ipynb @@ -1511,7 +1511,7 @@ " xs, cov = np.array(xs), np.array(cov)\n", "```\n", "\n", - "There's an easy way to avoid this. `filtery.common` provides the `Saver` class which will save all attributes in the Kalman filter class each time `Saver.save()` is called. Let's see it in action and then we will talk about it more." + "There's an easy way to avoid this. `filterpy.common` provides the `Saver` class which will save all attributes in the Kalman filter class each time `Saver.save()` is called. Let's see it in action and then we will talk about it more." ] }, {