From 9eaf4779362c6c5f44fc22504dda30a8ed8ee821 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=8BAndrzej=20Ressel?= Date: Fri, 19 Sep 2025 21:41:38 +0200 Subject: [PATCH] Fix typo in 'language' in documentation --- content/docs/iac/build-with-pulumi/build-a-provider.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/iac/build-with-pulumi/build-a-provider.md b/content/docs/iac/build-with-pulumi/build-a-provider.md index 032cd4c8a63f..04cc63327deb 100644 --- a/content/docs/iac/build-with-pulumi/build-a-provider.md +++ b/content/docs/iac/build-with-pulumi/build-a-provider.md @@ -400,7 +400,7 @@ An important piece of information #### Preamble and dependencies -Like any other Go langauge module, you start with a `package` declaration and and `import` block. Here we are adding a few important packages from the base library (`context`, `fmt`, and `os`) which will help us with file operations, and a selection of imports from the Pulumi Provider SDK. +Like any other Go language module, you start with a `package` declaration and and `import` block. Here we are adding a few important packages from the base library (`context`, `fmt`, and `os`) which will help us with file operations, and a selection of imports from the Pulumi Provider SDK. ```go package main