Skip to content
Snippets Groups Projects
Unverified Commit 9155ee45 authored by Sebastian Schmitt's avatar Sebastian Schmitt Committed by GitHub
Browse files

Fix typo (#1592)

parent bcd2ca1e
No related branches found
No related tags found
No related merge requests found
...@@ -525,9 +525,9 @@ void register_cells(pybind11::module& m) { ...@@ -525,9 +525,9 @@ void register_cells(pybind11::module& m) {
if (rev_pot) dec.paint(region, arb::init_reversal_potential{name, *rev_pot}); if (rev_pot) dec.paint(region, arb::init_reversal_potential{name, *rev_pot});
}, },
"region"_a, "ion_name"_a, "region"_a, "ion_name"_a,
pybind11::arg_v("int_con", pybind11::none(), "Intial internal concentration [mM]"), pybind11::arg_v("int_con", pybind11::none(), "Initial internal concentration [mM]"),
pybind11::arg_v("ext_con", pybind11::none(), "Intial external concentration [mM]"), pybind11::arg_v("ext_con", pybind11::none(), "Initial external concentration [mM]"),
pybind11::arg_v("rev_pot", pybind11::none(), "Intial reversal potential [mV]"), pybind11::arg_v("rev_pot", pybind11::none(), "Initial reversal potential [mV]"),
"Set ion species properties conditions on a region.") "Set ion species properties conditions on a region.")
// Place synapses // Place synapses
.def("place", .def("place",
......
...@@ -146,7 +146,7 @@ TEST(matrix, zero_diagonal_assembled) ...@@ -146,7 +146,7 @@ TEST(matrix, zero_diagonal_assembled)
// Capacitances. // Capacitances.
vvec Cm = {1, 1, 1, 1, 1, 2, 3}; vvec Cm = {1, 1, 1, 1, 1, 2, 3};
// Intial voltage of zero; currents alone determine rhs. // Initial voltage of zero; currents alone determine rhs.
array v(7, 0.0); array v(7, 0.0);
vvec area(7, 1.0); vvec area(7, 1.0);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment