Skip to content

Commit

Permalink
Remove stray comma from example
Browse files Browse the repository at this point in the history
  • Loading branch information
Blake-Madden committed Oct 22, 2023
1 parent 5c41d90 commit 28025d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/manual/09-EndUserUsage.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ IF(AND(P_LEVEL < .05, N_OBS >= 30),
Logical checks can also be nested, creating a "case"-like\index{case statements|ii} statement:
```cpp
IF(AND(smartMeter1.power > 1,900, sensor1.temperature < 52), TRUE,
IF(AND(smartMeter1.power > 1900, sensor1.temperature < 52), TRUE,
// First logical check failed, so now check another scenario
// and return false if it meets our criteria.
IF(AND(smartMeter1.power < 300, sensor1.temperature > 55), FALSE,
Expand Down

0 comments on commit 28025d5

Please sign in to comment.