We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39568ee commit d749433Copy full SHA for d749433
dbos/serialization.go
@@ -71,7 +71,7 @@ func deserialize[T any](serializer Serializer, encoded *string) (T, error) {
71
72
if isJSONSerializer(serializer) {
73
// For JSON serializer, decode directly into the target type to preserve type information
74
- // We cannot just use the serializer's Decode method and recast -- the type inormation would be lost
+ // We cannot just use the serializer's Decode method and recast -- the type information would be lost
75
dataBytes, err := base64.StdEncoding.DecodeString(*encoded)
76
if err != nil {
77
return zero, fmt.Errorf("failed to decode base64 data: %w", err)
0 commit comments