diff --git a/docs/book/basics/simple_resource.md b/docs/book/basics/simple_resource.md index 1af18f6a15..3e7b855615 100644 --- a/docs/book/basics/simple_resource.md +++ b/docs/book/basics/simple_resource.md @@ -97,7 +97,7 @@ events to update the field. ```go // ContainerSetStatus defines the observed state of ContainerSet type ContainerSetStatus struct { - HealthyReplicas `json:"healthyReplicas,omitempty"` + HealthyReplicas int32 `json:"healthyReplicas,omitempty"` } ``` {% endmethod %}