From f7785bcdb461e183288c2b4d3dd462e663ce7350 Mon Sep 17 00:00:00 2001 From: jhadvig Date: Wed, 2 Dec 2015 13:59:58 +0100 Subject: [PATCH] Typo fix --- pkg/util/strategicpatch/patch.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/util/strategicpatch/patch.go b/pkg/util/strategicpatch/patch.go index 0ff10ec7875..1d3f77e2fb7 100644 --- a/pkg/util/strategicpatch/patch.go +++ b/pkg/util/strategicpatch/patch.go @@ -113,7 +113,7 @@ func CreateStrategicMergePatch(original, modified []byte, dataStruct interface{} } // CreateTwoWayMergePatch creates a patch that can be passed to StrategicMergePatch from an original -// document and a modified documernt, which are passed to the method as json encoded content. It will +// document and a modified document, which are passed to the method as json encoded content. It will // return a patch that yields the modified document when applied to the original document, or an error // if either of the two documents is invalid. func CreateTwoWayMergePatch(original, modified []byte, dataStruct interface{}, fns ...PreconditionFunc) ([]byte, error) {