Skip to content

Commit d749433

Browse files
committed
typo
1 parent 39568ee commit d749433

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dbos/serialization.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ func deserialize[T any](serializer Serializer, encoded *string) (T, error) {
7171

7272
if isJSONSerializer(serializer) {
7373
// 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
74+
// We cannot just use the serializer's Decode method and recast -- the type information would be lost
7575
dataBytes, err := base64.StdEncoding.DecodeString(*encoded)
7676
if err != nil {
7777
return zero, fmt.Errorf("failed to decode base64 data: %w", err)

0 commit comments

Comments
 (0)