Skip to content

Commit 109cf29

Browse files
authored
Merge pull request cds-hooks#567 from buildpacks/fix-inline-buildpacks-spelling
Fix spelling error in inline buildpacks
2 parents 0f91f06 + 15b393c commit 109cf29

File tree

9 files changed

+16
-16
lines changed

9 files changed

+16
-16
lines changed

RELEASE.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ Some use cases in which this may be desired...
1515
### Process
1616

1717
1. A milestone in the following format is created: `<component(s)>/<version>` <sup>*</sup>
18-
1. Issues are created and tagged with appropriete milestone.
18+
1. Issues are created and tagged with appropriate milestone.
1919
1. A release branch in the following format is created off of `main`: `release/<component(s)>/<version>` <sup>*</sup>
2020
1. As changes are completed, PRs would target the release branch and merged using the same guidelines as merging to `main`.
21-
1. Once all issues and/or the associated component release is shipped, the release branch is merged into `main` by subteam maintainers.
21+
1. Once all issues and/or the associated component release is shipped, the release branch is merged into `main` by sub-team maintainers.
2222

2323
_* may require a [project contributor or maintainer](https://github.com/buildpacks/community/blob/main/TEAMS.md) intervention._
2424

2525

26-
##### Example Namings
26+
##### Example Naming
2727

2828
Branches:
2929

@@ -42,7 +42,7 @@ Milestones:
4242

4343
##### Example Workflow
4444

45-
Let's imagine `pack` is releasing version `1.2.3`. It is known that there will be a decent amount of changes to a few guides and we'd like to seperate the entire set of changes per guide. The steps that would be taken are as follows:
45+
Let's imagine `pack` is releasing version `1.2.3`. It is known that there will be a decent amount of changes to a few guides and we'd like to separate the entire set of changes per guide. The steps that would be taken are as follows:
4646

4747
1. A milestone `pack/1.2.3` would be created.
4848
1. Issues for the necessary changes would be tagged with milestone `pack/1.2.3`.

content/community.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Partake in one or many of our following public events:
1515

1616
#### How can I start contributing?
1717

18-
If you are new to the project, the first thing you should do is gain some understanding of the project. This normaly entails doing the following:
18+
If you are new to the project, the first thing you should do is gain some understanding of the project. This normally entails doing the following:
1919

2020
1. Watch a few [talks (videos)][talks].
2121
2. Next, run through some [tutorials][tutorials].
@@ -30,7 +30,7 @@ If you didn't find anything you'd like to improve while going through the tutori
3030
| [`lifecycle`][lifecycle] | Go, Docker | Executables that implement the main [specifications][spec] and are used by [platforms][platforms] such as `pack`.
3131
| [`docs`][docs] | Hugo, HTML, JavaScript | Main website and documentation.
3232

33-
> Dependending our your depth of understading or desires some components may be more ideal than others.
33+
> Depending our your depth of understanding or desires some components may be more ideal than others.
3434
3535
[talks]: /docs/#talks
3636
[tutorials]: /docs/#tutorials

content/docs/app-developer-guide/specify-buildpacks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ A buildpack located in a CNB Registry
102102
- `urn:cnb:registry:[email protected]`
103103

104104
<small><sup>†</sup> Directory buildpacks are not currently supported on Windows.</small><br />
105-
<small><sup>‡</sup> Version may be omited if there is only one buildpack in the builder matching the `id`.</small>
105+
<small><sup>‡</sup> Version may be omitted if there is only one buildpack in the builder matching the `id`.</small>
106106

107107
[project-toml]: /docs/app-developer-guide/using-project-descriptor/
108108
[samples]: https://github.com/buildpacks/samples

content/docs/app-developer-guide/using-http-proxy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The `pack` tool uses the Docker daemon to manage the local image registry on you
2525

2626

2727
### Docker Desktop (Windows and MacOS)
28-
Docker's documetation states "Docker Desktop lets you configure HTTP/HTTPS Proxy Settings and automatically propagates these to Docker". Set the system proxy using the [MacOS documentation](https://support.apple.com/en-gb/guide/mac-help/mchlp2591/mac) or [Windows documentation](https://www.dummies.com/computers/operating-systems/windows-10/how-to-set-up-a-proxy-in-windows-10/). The system proxy settings will be used by Docker Desktop.
28+
Docker's documentation states "Docker Desktop lets you configure HTTP/HTTPS Proxy Settings and automatically propagates these to Docker". Set the system proxy using the [MacOS documentation](https://support.apple.com/en-gb/guide/mac-help/mchlp2591/mac) or [Windows documentation](https://www.dummies.com/computers/operating-systems/windows-10/how-to-set-up-a-proxy-in-windows-10/). The system proxy settings will be used by Docker Desktop.
2929

3030
### Linux
3131
The Docker project documents [how to configure configure the HTTP/HTTPS proxy](https://docs.docker.com/config/daemon/systemd/#httphttps-proxy) settings for the Docker daemon on Linux. You should configure the `HTTP_PROXY` and `HTTPS_PROXY` environment variables as part of the Docker daemon startup.

content/docs/app-developer-guide/using-inline-buildpacks.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ weight=7
44
summary="Learn how to create an ephemeral buildpack to customize your build."
55
+++
66

7-
You can supplement your app's build proces with custom scripts by creating an _inline buildpack_. An inline buildpack is an ephemeral buildpack that's defined in your [project descriptor][project-toml] (i.e. `project.toml`). You can include a script to run as part of the build without setting up all the files and directories that are required for a complete buildpack.
7+
You can supplement your app's build process with custom scripts by creating an _inline buildpack_. An inline buildpack is an ephemeral buildpack that's defined in your [project descriptor][project-toml] (i.e. `project.toml`). You can include a script to run as part of the build without setting up all the files and directories that are required for a complete buildpack.
88

9-
Inline buildpacks are defined as an entry in the `[[build.buildpacks]]` table of the project descriptor by inlcuding an `inline` script in the `[build.buildpacks.script]` table.
9+
Inline buildpacks are defined as an entry in the `[[build.buildpacks]]` table of the project descriptor by including an `inline` script in the `[build.buildpacks.script]` table.
1010

1111
For example, you may want to run a Rake task against a Ruby app after the Ruby buildpack builds your app.
1212

@@ -37,7 +37,7 @@ Inline buildpacks aren't constrained to a single command, however. You can defin
3737
id = "me/cleanup"
3838

3939
[build.buildpacks.script]
40-
api = "0.6"
40+
api = "0.9"
4141
inline = """
4242
set -e
4343
source scripts/utils.sh

content/docs/buildpack-author-guide/build-phases-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,4 +376,4 @@ Our NodeJS example image requires an entrypoint called `web`. The `web` entrypo
376376

377377
## Summary
378378

379-
We have taken a detailed look at how buildpacks are used to build a sample application. The meta-buildpack contains two order groups and we have seen examples of how an order group is resolved. In addition we have looked at the contributions that a buildpack makes to the build plan and considerd how these are resolved into a buildpack plan to be provided to the build phase of specific buildpacks. Finally, we have briefly considered how the analyze and restore phases can allow advanced caching strategies.
379+
We have taken a detailed look at how buildpacks are used to build a sample application. The meta-buildpack contains two order groups and we have seen examples of how an order group is resolved. In addition we have looked at the contributions that a buildpack makes to the build plan and considered how these are resolved into a buildpack plan to be provided to the build phase of specific buildpacks. Finally, we have briefly considered how the analyze and restore phases can allow advanced caching strategies.

content/docs/buildpack-author-guide/create-buildpack/adding-bill-of-materials.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ api = "0.8"
5858
id = "io.buildpacks.samples.stacks.bionic"
5959
```
6060

61-
Then, in our buildpack implemetnation we will generate the necessary SBOM metadata:
61+
Then, in our buildpack implementation we will generate the necessary SBOM metadata:
6262

6363
```bash
6464
# ...

content/docs/operator-guide/create-a-stack.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Next, we will be setting up the base image as required by the [Cloud-Native Buil
5858
5959

6060
The `CNB_USER_ID` is the `UID` of the user as which the `detect` and `build` steps are run. The given user **MUST NOT** be a root user
61-
and have it's home directly writeable. `CNB_GROUP_ID` is the primary `GID` of the above user.
61+
and have it's home directly writable. `CNB_GROUP_ID` is the primary `GID` of the above user.
6262

6363
Let's update the `Dockerfile` to reflect the above specification.
6464

@@ -111,7 +111,7 @@ docker build . -t cnbs/sample-stack-base:bionic --target base
111111

112112
### Creating the run image
113113

114-
Next up, we will create the run image. The run image is the base image for your runtime application environemnt.
114+
Next up, we will create the run image. The run image is the base image for your runtime application environment.
115115

116116
In order to create our run image all we need to do is to set the run image's `USER` to the user with `CNB_USER_ID`. Our final `Dockerfile` for the build image should look like -
117117

content/docs/reference/spec/migration/buildpack-api-0.4-0.5.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ See the [spec release](https://github.com/buildpacks/spec/releases/tag/buildpack
1212
The buildpack may now indicate compatibility with any stack by specifying the special value `*`.
1313

1414
### Character restrictions for process types
15-
For each process in `launch.toml`, `type` is now restricted to only contain numbers, letters, and the characters `.`, `_`, and `-`, so symlinks on both linux and windows filesystems can be created.
15+
For each process in `launch.toml`, `type` is now restricted to only contain numbers, letters, and the characters `.`, `_`, and `-`, so symlinks on both Linux and windows filesystems can be created.
1616

1717
### Override env vars
1818
Override is now the default behavior for env files without a suffix.

0 commit comments

Comments
 (0)