fixup error message
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 39s Details

This commit is contained in:
Ladd Hoffman 2024-04-10 22:24:13 -05:00
parent b12759fac8
commit 1a4c5c338d
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ contract Forum is Reputation {
);
require(
totalCitationWeightNeg >= -100,
"Sum of positive citations must be >= -100"
"Sum of negative citations must be >= -100"
);
emit PostAdded(postIndex);
}