fix typo
All checks were successful
Go Action / goaction (pull_request) Successful in 51s

This commit is contained in:
2025-12-30 21:55:25 +03:00
parent 783b4dd3b5
commit 0054ebf7e6
2 changed files with 9 additions and 9 deletions

View File

@@ -89,7 +89,7 @@ func JUnmarshal(b []byte, v any) error {
return nil
}
func JParce[T any](b []byte) (T, error) {
func JParse[T any](b []byte) (T, error) {
var data T
return data, JUnmarshal(b, &data)