Skip to content

Commit

Permalink
docs: fix typos (#4406)
Browse files Browse the repository at this point in the history
  • Loading branch information
ernstwi committed Nov 6, 2023
1 parent bc4523d commit d2d910f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion internal/static/config.yaml
@@ -1,7 +1,7 @@
# This is an example .goreleaser.yml file with some sensible defaults.
# Make sure to check the documentation at https://goreleaser.com

# The lines bellow are called `modelines`. See `:help modeline`
# The lines below are called `modelines`. See `:help modeline`
# Feel free to remove those if you don't want/need to use them.
# yaml-language-server: $schema=https://goreleaser.com/static/schema.json
# vim: set ts=2 sw=2 tw=0 fo=cnqoj
Expand Down
2 changes: 1 addition & 1 deletion www/docs/customization/templates.md
Expand Up @@ -51,7 +51,7 @@ In fields that support templates, these fields are always available:
| `.TagBody` | the annotated tag message's body, or the message's body of the commit it points out[^git-tag-body]. Since v1.2 |
| `.Runtime.Goos` | equivalent to `runtime.GOOS`. Since v1.5 |
| `.Runtime.Goarch` | equivalent to `runtime.GOARCH`. Since v1.5 |
| `.Artifacts` | the current artifact list. See table bellow for fields. Since v1.16 (pro) |
| `.Artifacts` | the current artifact list. See table below for fields. Since v1.16 (pro) |

[^version-prefix]:
The `v` prefix is stripped, and it might be changed in
Expand Down
4 changes: 2 additions & 2 deletions www/docs/errors/docker-build.md
Expand Up @@ -15,15 +15,15 @@ It's not.
It's always a new temporary build context with the artifacts you can use in
its root, so you can just `COPY binaryname /bin/binaryname` and etc.

Bellow you can find some **don'ts** as well as what you should **do**.
Below you can find some **don'ts** as well as what you should **do**.

## `use docker --context=default buildx to switch to context "default"`

The "default" context is a built-in context in "docker buildx", and it is automatically created. This context typically points to the local Docker environment and is used by default for building images. It has to be active for `goreleaser` to build images with "buildx".

You can switch to the default context using `docker context use default`.

This change should be persistant.
This change should be persistent.

### Don't

Expand Down

0 comments on commit d2d910f

Please sign in to comment.