Skip to content

Commit 2d6bdb0

Browse files
Merge pull request #274 from zing-rsa/fix/errorLog
fix(): fix error log
2 parents 353c855 + 4f88a8b commit 2d6bdb0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/plutus/data.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ export const Data = {
113113
if (title[0] !== title[0].toLowerCase()) {
114114
throw new Error(
115115
`Object requires lower case properties: found ${title}, expected ${
116-
title[0].toUpperCase() + title.slice(1)
116+
title[0].toLowerCase() + title.slice(1)
117117
}`,
118118
);
119119
}

0 commit comments

Comments
 (0)