Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix typos #4406

Merged
merged 1 commit into from Nov 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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