Skip to content

Commit

Permalink
Fix comment for nested op in calc_mode
Browse files Browse the repository at this point in the history
Co-authored-by: Robert Smith <[email protected]>
  • Loading branch information
daljit46 and Lestropie authored Oct 7, 2024
1 parent 9ce70d1 commit ecbb7f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testing/binaries/tests/mrcalc/calc_mode
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ verify "mrcalc 10.2 0.0 -div" "inf"
verify "mrcalc 10 3 -modulo" "1"
verify "mrcalc 10 -3 -modulo" "1"

verify "mrcalc 2 3 4 -add -mult" "14" # Computes (3 * 4) + 2 = 14
verify "mrcalc 2 3 4 -add -mult" "14" # Computes 2 * (3 + 4) = 14
verify "mrcalc 5 1 2 -add 4 -multiply -add 3 -subtract" "14" # Computes 5 + ((1 + 2) * 4) - 3 = 14

verify "mrcalc 5 7 -min" "5"
Expand Down

0 comments on commit ecbb7f2

Please sign in to comment.