Skip to content

Commit a81914a

Browse files
committed
Fix spelling error in inline buildpacks
Update a spelling error and bump the buildpacks API used for inline buildpacks Signed-off-by: Aidan Delaney <[email protected]>
1 parent b362c49 commit a81914a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ 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

99
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.
1010

@@ -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

0 commit comments

Comments
 (0)