From fde689dd71859fe5d64bde758961aa419cd5ba09 Mon Sep 17 00:00:00 2001 From: Nic Cope Date: Tue, 31 Oct 2023 17:50:55 -0700 Subject: [PATCH] Don't perma-disable the future tense linter Signed-off-by: Nic Cope --- .../guides/write-a-composition-function-in-go.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/knowledge-base/guides/write-a-composition-function-in-go.md b/content/knowledge-base/guides/write-a-composition-function-in-go.md index f2fcc734..1d2324b5 100644 --- a/content/knowledge-base/guides/write-a-composition-function-in-go.md +++ b/content/knowledge-base/guides/write-a-composition-function-in-go.md @@ -51,7 +51,7 @@ refer to the function in the present tense, because it doesn't exist yet. --> An `XBuckets` XR has a region and an array of bucket names. The function will create an Amazon Web Services (AWS) S3 bucket for each entry in the names array. - + To write a function in Go you: @@ -78,7 +78,7 @@ build or test a composition function. ## Initialize the function from a template Use the `crossplane beta xpkg init` command to initialize a new function. When -you run this command the CLI initializes your function using +you run this command it initializes your function using [this GitHub repository](https://github.com/crossplane/function-template-go) as a template.