Skip to content

Commit

Permalink
docs(bigquery/storage/managedwriter/adapt): typo in error string (#6729)
Browse files Browse the repository at this point in the history
  • Loading branch information
shollyman committed Sep 23, 2022
1 parent 34f3aa4 commit bb26153
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bigquery/storage/managedwriter/adapt/protoconversion.go
Expand Up @@ -411,7 +411,7 @@ func normalizeDescriptorInternal(in protoreflect.MessageDescriptor, visitedTypes
resultFDP.TypeName = proto.String(normName)
} else {
if visitedTypes.contains(msgFullName) {
return nil, fmt.Errorf("recursize type not supported: %s", inField.FullName())
return nil, fmt.Errorf("recursive type not supported: %s", inField.FullName())
}
visitedTypes.add(msgFullName)
dp, err := normalizeDescriptorInternal(inField.Message(), visitedTypes, enumTypes, structTypes, root)
Expand Down

0 comments on commit bb26153

Please sign in to comment.