Skip to content

Commit

Permalink
Fixed more typos in primaryvariable.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
Rory Barnes committed Jun 21, 2024
1 parent 20cac2d commit 03ba4dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/primaryvariable.rst
Original file line number Diff line number Diff line change
Expand Up @@ -201,14 +201,14 @@ We then need to add some lines to ```module.c```. In InitializeModule, add
.. code-block:: bash
module->fnFinalizeUpdatePhysics =
malloc(iNumBodies * sizeof(fnFinalizeUpdateCarbManModule));
malloc(iNumBodies * sizeof(fnFinalizeUpdatePhysicsModule));
and in FinalizeModule, add
.. code-block:: bash
module->fnFinalizeUpdatePhysics[iBody] =
malloc(iNumModules * sizeof(fnFinalizeUpdateCarbManModule));
malloc(iNumModules * sizeof(fnFinalizeUpdatePhysicsModule));
and
Expand Down

0 comments on commit 03ba4dc

Please sign in to comment.