From e5cc8af7f3984d120ff76357cc60892f6a82fc7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?N=C3=A1ndor=20Istv=C3=A1n=20Kr=C3=A1cser?= Date: Wed, 8 Nov 2017 18:43:36 +0100 Subject: [PATCH] helper/resource: fix ungrammatical doc comment in StateChangeConf --- helper/resource/state.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helper/resource/state.go b/helper/resource/state.go index 37c586a11a..c34e21b25c 100644 --- a/helper/resource/state.go +++ b/helper/resource/state.go @@ -46,7 +46,7 @@ type StateChangeConf struct { // If the Timeout is exceeded before reaching the Target state, return an // error. // -// Otherwise, result the result of the first call to the Refresh function to +// Otherwise, the result is the result of the first call to the Refresh function to // reach the target state. func (conf *StateChangeConf) WaitForState() (interface{}, error) { log.Printf("[DEBUG] Waiting for state to become: %s", conf.Target)