Skip to content

Commit

Permalink
objectionary#2772: Correct byte to Boolean
Browse files Browse the repository at this point in the history
  • Loading branch information
levBagryansky committed Jan 17, 2024
1 parent 5b0d033 commit 9d584fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eo-runtime/src/main/java/EOorg/EOeolang/EOerror.java
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ private static String safeMessage(final Phi enclosure) {
result = String.format(
"%s(螖 = %s)",
enclosure,
data[0] > 0
data[0] != 0
);
break;
case 8:
Expand Down

0 comments on commit 9d584fd

Please sign in to comment.