Skip to content

Commit 0a69835

Browse files
committed
fix typos
1 parent 19a946a commit 0a69835

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/app/docs/devbox_examples/languages/go.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Go projects can be run in Devbox by adding the Go SDK to your project. If your p
2020

2121
This will install the latest version of the Go SDK. You can find other installable versions of Go by running `devbox search go`. You can also view the available versions on [Nixhub](https://www.nixhub.io/packages/go)
2222

23-
If you need additional C libraries, you can add them along with `gcc` to your package list. For example, if libcap is required for yoru project:
23+
If you need additional C libraries, you can add them along with `gcc` to your package list. For example, if libcap is required for your project:
2424

2525
```json
2626
"packages": [
@@ -32,9 +32,9 @@ If you need additional C libraries, you can add them along with `gcc` to your pa
3232

3333
## Installing go packages that have CLIs
3434

35-
Installing go packages in your devbox shell is as simple as `go get <package_name>` but some packages come with a CLI of their own (e.g., `godotenv`). That means after installing the package you should be able to use the CLI binary and also control where that binary is installed. This is done by setting `$GOPATH` or `$GOBIN` env variable.
35+
Installing go packages in your devbox shell is as simple as `go get <package_name>` but some packages come with a CLI of their own (e.g., `godotenv`). That means after installing the package you should be able to use the CLI binary and also control where that binary is installed. This is done by setting `$GOPATH` or `$GOBIN` env variable.
3636

37-
With Devbox you can set these variables in the `"env"` section of your `devbox.json` file.
37+
With Devbox you can set these variables in the `"env"` section of your `devbox.json` file.
3838
In the example below we are setting `$GOPATH` to be the same directory of our project and therefore `godotenv` binary will be located in the `bin/` subdirectory of `$GOPATH`:
3939

4040
```json

docs/app/docs/env_variables.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Devbox Env Variables
33
---
44

5-
Thw following is a list of Environment variables used by Devbox to manage your environment. Some of these variables are set by Devbox, while others can be used to manage how Devbox sets up your shell.
5+
The following is a list of Environment variables used by Devbox to manage your environment. Some of these variables are set by Devbox, while others can be used to manage how Devbox sets up your shell.
66

77
Note that
88

0 commit comments

Comments
 (0)