Skip to content

Commit 9155ee4

Browse files
authored
Fix typo (#1592)
1 parent bcd2ca1 commit 9155ee4

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

python/cells.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -525,9 +525,9 @@ void register_cells(pybind11::module& m) {
525525
if (rev_pot) dec.paint(region, arb::init_reversal_potential{name, *rev_pot});
526526
},
527527
"region"_a, "ion_name"_a,
528-
pybind11::arg_v("int_con", pybind11::none(), "Intial internal concentration [mM]"),
529-
pybind11::arg_v("ext_con", pybind11::none(), "Intial external concentration [mM]"),
530-
pybind11::arg_v("rev_pot", pybind11::none(), "Intial reversal potential [mV]"),
528+
pybind11::arg_v("int_con", pybind11::none(), "Initial internal concentration [mM]"),
529+
pybind11::arg_v("ext_con", pybind11::none(), "Initial external concentration [mM]"),
530+
pybind11::arg_v("rev_pot", pybind11::none(), "Initial reversal potential [mV]"),
531531
"Set ion species properties conditions on a region.")
532532
// Place synapses
533533
.def("place",

test/unit/test_matrix.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ TEST(matrix, zero_diagonal_assembled)
146146
// Capacitances.
147147
vvec Cm = {1, 1, 1, 1, 1, 2, 3};
148148

149-
// Intial voltage of zero; currents alone determine rhs.
149+
// Initial voltage of zero; currents alone determine rhs.
150150
array v(7, 0.0);
151151
vvec area(7, 1.0);
152152

0 commit comments

Comments
 (0)