update a bunch of panic message to be capitalized

This commit is contained in:
John Murray 2023-11-28 20:46:09 -05:00
parent d37dd442f5
commit 298f93d20c
No known key found for this signature in database
6 changed files with 26 additions and 26 deletions

View file

@ -1229,7 +1229,7 @@ pub fn exportFromInt(comptime T: type, comptime name: []const u8) void {
const answer = @mulWithOverflow(this, RocDec.one_point_zero_i128);
if (answer[1] == 1) {
roc_panic("Decimal conversion from integer failed!", 0);
roc_panic("Decimal conversion from Integer failed!", 0);
} else {
return answer[0];
}