diff --git a/docs/book/src/reference/creating-events.md b/docs/book/src/reference/creating-events.md index 258a66b78ab..4fa447a3237 100644 --- a/docs/book/src/reference/creating-events.md +++ b/docs/book/src/reference/creating-events.md @@ -20,10 +20,10 @@ Event(object runtime.Object, eventtype, reason, message string) ``` - `object` is the object this event is about. -- `eventtype` is this event type, and is either *Normal* or *Warning*. -- `reason` is the reason this event is generated. It should be short and unique with `UpperCamelCase` format. The value could appear in *switch* statements by automation. -- `message` is intended to be consumed by humans. -More [info](https://github.com/kubernetes/api/blob/6c11c9e4685cc62e4ddc8d4aaa824c46150c9148/core/v1/types.go#L6019-L6024): +- `eventtype` is this event type, and is either *Normal* or *Warning*. [More info][Event-Example] +- `reason` is the reason this event is generated. It should be short and unique with `UpperCamelCase` format. The value could appear in *switch* statements by automation. [More info][[Reason-Example]] +- `message` is intended to be consumed by humans. [More info][Message-Example] +