From 9a769da83ed254cb3c9de64a9d7a6fe30c2712e7 Mon Sep 17 00:00:00 2001 From: Goran Jelic-Cizmek Date: Tue, 29 Oct 2024 11:01:10 +0100 Subject: [PATCH] Fix wording --- src/codegen/codegen_neuron_cpp_visitor.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/codegen/codegen_neuron_cpp_visitor.hpp b/src/codegen/codegen_neuron_cpp_visitor.hpp index 99fbd8154..24d71c22f 100644 --- a/src/codegen/codegen_neuron_cpp_visitor.hpp +++ b/src/codegen/codegen_neuron_cpp_visitor.hpp @@ -785,7 +785,7 @@ class CodegenNeuronCppVisitor: public CodegenCppVisitor { void print_cvode_definitions(); /** - * Print the CVODE function returning the # of ODEs to solve + * Print the CVODE function returning the number of ODEs to solve */ void print_cvode_count(); @@ -795,7 +795,7 @@ class CodegenNeuronCppVisitor: public CodegenCppVisitor { void print_cvode_tolerances(); /** - * Print the CVODE update function \c name from \c block + * Print the CVODE update function \c name contained in \c block */ void print_cvode_update(const std::string& name, const ast::StatementBlock& block);