Skip to content

Commit

Permalink
Fix typo (#1592)
Browse files Browse the repository at this point in the history
  • Loading branch information
schmitts authored Jun 23, 2021
1 parent bcd2ca1 commit 9155ee4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions python/cells.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -525,9 +525,9 @@ void register_cells(pybind11::module& m) {
if (rev_pot) dec.paint(region, arb::init_reversal_potential{name, *rev_pot});
},
"region"_a, "ion_name"_a,
pybind11::arg_v("int_con", pybind11::none(), "Intial internal concentration [mM]"),
pybind11::arg_v("ext_con", pybind11::none(), "Intial external concentration [mM]"),
pybind11::arg_v("rev_pot", pybind11::none(), "Intial reversal potential [mV]"),
pybind11::arg_v("int_con", pybind11::none(), "Initial internal concentration [mM]"),
pybind11::arg_v("ext_con", pybind11::none(), "Initial external concentration [mM]"),
pybind11::arg_v("rev_pot", pybind11::none(), "Initial reversal potential [mV]"),
"Set ion species properties conditions on a region.")
// Place synapses
.def("place",
Expand Down
2 changes: 1 addition & 1 deletion test/unit/test_matrix.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ TEST(matrix, zero_diagonal_assembled)
// Capacitances.
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);
vvec area(7, 1.0);

Expand Down

0 comments on commit 9155ee4

Please sign in to comment.