From c68dbdb8fe32542204817e516cb8c35c906e7fa5 Mon Sep 17 00:00:00 2001 From: Danila Fedorin Date: Tue, 4 Oct 2022 13:20:56 -0700 Subject: [PATCH] Fix line range in linear multistep solver post --- content/blog/linear_multistep.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/blog/linear_multistep.md b/content/blog/linear_multistep.md index f566742..f89d8b0 100644 --- a/content/blog/linear_multistep.md +++ b/content/blog/linear_multistep.md @@ -300,7 +300,7 @@ in a list, so the function will expect exactly as many \\(y_i\\) y-coordinates as there are coefficients. The actual code is pretty boring. -{{< codelines "chapel" "linear-multistep/lmm.chpl" 18 38 >}} +{{< codelines "chapel" "linear-multistep/lmm.chpl" 18 39 >}} That completes our implementation. All that's left is to actually use our API! First, we need to encode the various methods: