(f reflect.StructField)
| 487 | } |
| 488 | |
| 489 | func isFieldInline(f reflect.StructField) bool { |
| 490 | return yamlFieldInlineParser.MatchString(f.Tag.Get("yaml")) |
| 491 | } |
| 492 | |
| 493 | func getFieldDescription(f reflect.StructField, fallback string) string { |
| 494 | if desc := getDocTagValue(f, "description"); desc != "" { |