Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

KEP-1027: Fix Markdown formatting caused by missing backtick #5107

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion keps/sig-api-machinery/1027-api-unions/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ kubebuilder types):
discriminator values). This field MUST be required if there is no default
option, omitempty if the default option is the empty string, or optional and
omitempty if a default value is specified with the `// +default` marker.
- `// +unionMember[=<memberName>][,optional] before a field means that this
- `// +unionMember[=<memberName>][,optional]` before a field means that this
field is a member of a union. The `<memberName>` is the name of the field that will be set as the discriminator value.
It MUST correspond to one of the valid enum values of the discriminator's enum
type. It defaults to the go (i.e `CamelCase`) representation of the field name if not specified.
Expand Down