From 961d43142c2ca9c1aa1e5dc79c001a5a7f5414e4 Mon Sep 17 00:00:00 2001 From: hasheddan Date: Sat, 15 Jun 2019 08:20:37 -0500 Subject: [PATCH] s3 backend: minor typo in putMD5 comment Signed-off-by: hasheddan --- backend/remote-state/s3/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/remote-state/s3/client.go b/backend/remote-state/s3/client.go index 12500183b..d79e9f93b 100644 --- a/backend/remote-state/s3/client.go +++ b/backend/remote-state/s3/client.go @@ -270,7 +270,7 @@ func (c *RemoteClient) getMD5() ([]byte, error) { return sum, nil } -// store the hash of the state to that clients can check for stale state files. +// store the hash of the state so that clients can check for stale state files. func (c *RemoteClient) putMD5(sum []byte) error { if c.ddbTable == "" { return nil