Skip to content

Commit

Permalink
add missing doc string
Browse files Browse the repository at this point in the history
  • Loading branch information
jcurtis2 committed Feb 22, 2024
1 parent 78e045f commit 40aed1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pypartmc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ PYBIND11_MODULE(_PyPartMC, m) {
.def("add_particles", AeroState::add_particles,
R"pbdoc(aero_state += aero_state_delta, with the weight left unchanged
so the new concentration is the sum of the two concentrations.)pbdoc")
.def("sample", AeroState::sample,
.def("sample", AeroState::sample,
R"pbdoc(Generates a random sample by removing particles from
aero_state_from and adding them to aero_state_to, transfering
weight as well. This is the equivalent of aero_state_add().)pbdoc")
Expand Down

0 comments on commit 40aed1e

Please sign in to comment.