Skip to content

Commit

Permalink
Merge pull request #54 from johannesmarx/chore/fix-typo
Browse files Browse the repository at this point in the history
chore: fix typo
  • Loading branch information
kullmanp authored Apr 9, 2024
2 parents a7f4fa6 + 36c2251 commit 5f4f547
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions/is-problem-json-schema.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const assertProblemSchema = (schema) => {
}
const status = (schema.properties || {}).status || {};
if (status.type !== 'integer' || status.format !== 'int32') {
throw "Problem json must have property 'status' with type 'integer' and format 'in32'";
throw "Problem json must have property 'status' with type 'integer' and format 'int32'";
}
const detail = (schema.properties || {}).detail || {};
if (detail.type !== 'string') {
Expand Down

0 comments on commit 5f4f547

Please sign in to comment.