Skip to content

Commit

Permalink
Fix some more code documentation to use true/false instead of 1/0 for…
Browse files Browse the repository at this point in the history
… bool values

Signed-off-by: Christoph Niethammer <[email protected]>
  • Loading branch information
cniethammer committed Feb 11, 2024
1 parent 5bc6f57 commit 942831d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/plugins/MaxCheck.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class MaxCheck : public PluginBase
<stop>INT</stop> <!-- stop time step -->
</control>
<range>
<inclusive>BOOL<inclusive> <!-- enable checking inside range (default): 1 | outside range: 0 -->
<inclusive>BOOL<inclusive> <!-- enable checking inside range (default): true | outside range: false -->
<xmin>FLOAT</xmin> <xmax>FLOAT</xmax> <!-- range x-axis -->
<ymin>FLOAT</ymin> <ymax>FLOAT</ymax> <!-- range y-axis -->
<zmin>FLOAT</zmin> <zmax>FLOAT</zmax> <!-- range z-axis -->
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/NEMD/DensityControl.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class DensityControl : public PluginBase {
<stop>INT</stop> <!-- stop time step -->
</control>
<range>
<inclusive>BOOL</inclusive> <!-- enable checking inside range (default): 1 | outside range: 0 -->
<inclusive>BOOL</inclusive> <!-- enable checking inside range (default): true | outside range: false -->
<xmin>FLOAT</xmin> <xmax>FLOAT</xmax> <!-- range x-axis -->
<ymin>FLOAT</ymin> <ymax>FLOAT</ymax> <!-- range y-axis -->
<zmin>FLOAT</zmin> <zmax>FLOAT</zmax> <!-- range z-axis -->
Expand Down

0 comments on commit 942831d

Please sign in to comment.