From c106197853ff680d32e093a269ab5c46de1ee4c3 Mon Sep 17 00:00:00 2001 From: Levi Blackstone Date: Wed, 10 Oct 2018 15:31:26 -0600 Subject: [PATCH] Add missing type to ContainerSetStatus example --- docs/book/basics/simple_resource.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 %}