Skip to content

Commit

Permalink
fix: Correct typo 'strigify' to 'stringify'
Browse files Browse the repository at this point in the history
  • Loading branch information
jongwooo committed Oct 27, 2022
1 parent 32f7876 commit f1f33e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/transformers/features/CreateStringifyTransformer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ export namespace CreateStringifyTransformer {
}

const enum ErrorMessages {
NOT_SPECIFIED = "Error on TSON.strigify(): generic argument is not specified.",
NOT_SPECIFIED = "Error on TSON.stringify(): generic argument is not specified.",
GENERIC_ARGUMENT = "Error on TSON.stringify(): non-specified generic argument.",
}
2 changes: 1 addition & 1 deletion src/transformers/features/StringifyTransformer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ export namespace StringifyTransformer {
}

const enum ErrorMessages {
NO_INPUT_VALUE = "Error on TSON.strigify(): no input value.",
NO_INPUT_VALUE = "Error on TSON.stringify(): no input value.",
GENERIC_ARGUMENT = "Error on TSON.stringify(): non-specified generic argument.",
}

0 comments on commit f1f33e2

Please sign in to comment.