From abe9c28b9841f19ea356a74a7b58f2a22cf585a5 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 6 May 2024 17:03:01 +0530 Subject: [PATCH] Clarify a comment in step-77. --- examples/step-77/step-77.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/step-77/step-77.cc b/examples/step-77/step-77.cc index 8376adf554..174858b310 100644 --- a/examples/step-77/step-77.cc +++ b/examples/step-77/step-77.cc @@ -77,7 +77,7 @@ namespace Step77 // (If you are wondering why the program uses a direct object for the Jacobian // matrix but a pointer for the factorization: Every time KINSOL requests that // the Jacobian be updated, we can simply write `jacobian_matrix=0;` to reset - // it to an empty matrix that we can then fill again. On the other hand, the + // it to a zero matrix that we can then fill again. On the other hand, the // SparseDirectUMFPACK class does not have any way to throw away its content // or to replace it with a new factorization, and so we use a pointer: We just // throw away the whole object and create a new one whenever we have a new -- 2.39.5