docs: fix spelling errors in the description (backport #22874) (#22879)

This commit is contained in:
mergify[bot]
2024-12-16 07:42:44 +01:00
committed by GitHub
parent 2e15f67370
commit b6441e00a6
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -402,7 +402,7 @@ func protoCol(f protoreflect.FieldDescriptor) schema.Field {
case protoreflect.EnumKind:
// TODO: support enums
col.Kind = schema.EnumKind
// use the full name to avoid collissions
// use the full name to avoid collisions
col.ReferencedType = string(f.Enum().FullName())
col.ReferencedType = strings.ReplaceAll(col.ReferencedType, ".", "_")
case protoreflect.MessageKind: