Skip to content

Commit

Permalink
Fix syntax typo (compound assignments operators in normalise() method)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomchapman committed Dec 16, 2024
1 parent ea455bc commit 71fd669
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/bout/tokamak_coordinates_factory.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,9 @@ public:

Rxy_m /= Lbar;
Bpxy_m /= Bbar;
Btxy_m / Bbar;
Bxy_m / Bbar;
hthe_m / Lbar;
Btxy_m /= Bbar;
Bxy_m /= Bbar;
hthe_m /= Lbar;
ShearFactor_m *= Lbar * Lbar * Bbar * ShearFactor;
dx_m /= Lbar * Lbar * Bbar;

Expand Down

0 comments on commit 71fd669

Please sign in to comment.