From 460bc7a0c3e98785b84bbcf36ef14bebe07cbafb Mon Sep 17 00:00:00 2001 From: Alex Kunin Date: Wed, 2 Jun 2021 08:54:29 +0300 Subject: [PATCH] docs: fix a few typos (#216) --- CONTRIBUTING.md | 10 +++++----- templates/resources/image.md.tmpl | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a3621d65..f07be975 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,11 +1,11 @@ # Contributing -By participating to this project, you agree to abide our [code of conduct](/CODE_OF_CONDUCT.md). +By participating in this project, you agree to abide our [code of conduct](/CODE_OF_CONDUCT.md). ## Write Issue When you have a bug report or feature request or something, please create an issue from [here](https://github.com/kreuzwerker/terraform-provider-docker/issues/new/choose). -Before creating an issue, please check whether same or releated issues exist. +Before creating an issue, please check whether same or related issues exist. Please use issue templates as much as possible. ### Guide of Bug report @@ -18,7 +18,7 @@ Please use issue templates as much as possible. * Don't include unneeded resources to reproduce the problem * Don't set unneeded attributes to reproduce the problem -## Setup your machine +## Set up your machine `terraform-provider-docker` is written in [Go](https://golang.org/). @@ -148,7 +148,7 @@ resource "docker_container" "foo" { } ``` -As the next step we can init terraform by provider a local plugin directory: +As the next step we can init terraform by providing a local plugin directory: ```sh # Which reflects the convention mentioned before # See https://www.terraform.io/docs/commands/init.html#plugin-installation @@ -184,6 +184,6 @@ pull request against the master branch. ## Releasing - Update the `CHANGELOG.md` by hand by [comparing](https://github.com/kreuzwerker/terraform-provider-docker/compare/v2.11.0...master) with the latest release, e.g. `v2.11.0` -- Replace all occurences of the latest release, e.g. `v2.11.0` with the new one, e.g. `v2.12.2`, execpt in the files `CHANGELOG.md`, `CONTRIBUTING.md`, `docs/**/*` +- Replace all occurrences of the latest release, e.g. `v2.11.0` with the new one, e.g. `v2.12.2`, except in the files `CHANGELOG.md`, `CONTRIBUTING.md`, `docs/**/*` - regenerate the website: `make website-generation` - run `git tag v2.12.2 && git push origin master v2.12.2` \ No newline at end of file diff --git a/templates/resources/image.md.tmpl b/templates/resources/image.md.tmpl index 416ac63e..36a884e9 100644 --- a/templates/resources/image.md.tmpl +++ b/templates/resources/image.md.tmpl @@ -29,7 +29,7 @@ you need to use it in combination with `docker_registry_image` as follows: ### Build You can also use the resource to build an image. -In thid case the image "zoo" and "zoo:develop" are built. +In this case the image "zoo" and "zoo:develop" are built. {{tffile "examples/resources/docker_image/resource-build.tf"}}