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

Website: fixing typos #429

Merged
merged 1 commit into from
Jun 1, 2022
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,6 @@ Session.vim

# GNU Screen
.screenrc

# Hugo build lock
.hugo_build.lock
2 changes: 1 addition & 1 deletion site/content/blog/on-release-versions.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Since I really want to keep Mage as backwards compatible as possible (CI runs
tests with versions as far back as 1.7)... I didn't want this headache. I also
didn't want everyone to have to make their import statements say /v2. Mage's
libraries are and always will be backwards compatible. The tags on the repo
previosuly were not intended to be semantic versions. In fact, I had intended
previously were not intended to be semantic versions. In fact, I had intended
to simply make each new release a major version specifically to make it clear
that these aren't semantic versions (just like Chrome is on v70 right now).
However, I wasn't very careful, and some of my tags were in semantic version
Expand Down
4 changes: 2 additions & 2 deletions site/content/blog/release-v1.3.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ As you may or may not know (it hasn't been well advertised), it's now extremely
easy to run multiple go versions side by side. You can `go get
golang.org/dl/go1.xx` for any version of go from 1.8 and up. It'll drop a
binary on your system that you can then run `go1.xx download` and it'll download
and set up a new go environment for that verison of go. From then on, you can
and set up a new go environment for that version of go. From then on, you can
`go1.xx build` etc just like you do with the "go" binary.

This makes it super easy to work on different projects with different required
versions of go support. I used to work at Canonical, and we were restricted to
the versions of Go that shipped in the latest Ubuntu release, because our code
was going to shiop with that release, too, and it needed to buid with the
was going to ship with that release, too, and it needed to build with the
built-in go compiler. This meant that we were almost always behind the latest
go version. Of course, go is backwards compatible, so you can build 1.6
compatible code with go 1.11.... but you can also accidentally introduce
Expand Down
2 changes: 1 addition & 1 deletion site/content/dependencies/_index.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ there are two calls to mg.F(compile, "server"), then compile("server") will only
## Parallelism

If run with `mg.Deps` or `mg.CtxDeps`, dependencies are run in their own
goroutines, so they are parellelized as much as possible given the dependency
goroutines, so they are parallelized as much as possible given the dependency
tree ordering restrictions. If run with `mg.SerialDeps` or `mg.SerialCtxDeps`,
the dependencies are run serially, though each dependency or sub-dependency will
still only ever be run once.
Expand Down
2 changes: 1 addition & 1 deletion site/content/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ go run bootstrap.go
```

This will download the code into your GOPATH, and then run the bootstrap script
to build mage with version infomation embedded in it. A normal `go get`
to build mage with version information embedded in it. A normal `go get`
(without -d) will build the binary correctly, but no version info will be
embedded. If you've done this, no worries, just go to
`$GOPATH/src/github.com/magefile/mage` and run `mage install` or `go run
Expand Down