Skip to content

Commit b8ee188

Browse files
authored
Merge pull request cds-hooks#597 from buildpacks/ste-review
Address technical language review
2 parents 77adc63 + 5896c9b commit b8ee188

File tree

6 files changed

+8
-17
lines changed

6 files changed

+8
-17
lines changed

content/docs/app-developer-guide/build-a-windows-app.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ weight=2
44
summary="The basics of taking your Windows app from source code to runnable image."
55
+++
66

7-
> **EXPERIMENTAL** Windows support is experiment!
7+
> **EXPERIMENTAL** Windows support is experimental!
88
>
99
> Enable experimental mode by running: `pack config experimental true`
1010
11-
### Precursor
11+
### Before You Start
1212

1313
#### Recommended reading
1414

@@ -20,7 +20,7 @@ When you're done, head back here.
2020

2121
In order to produce Windows container images, ensure [Windows container mode][container-mode] is enabled in your Docker settings (available only in Docker for Windows).
2222

23-
Then, building a Windows app using Cloud Native Buildpacks is nearly identical to [building for Linux][build-linux]:
23+
Then, building a Windows app using Cloud Native Buildpacks is nearly identical to [building for Linux][build-linux].
2424

2525
> **Not using Windows?**
2626
>

content/docs/app-developer-guide/build-an-app.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,6 @@ aliases=[
66
"/docs/using-pack/building-app/"
77
]
88
+++
9-
<!--+- if false+-->
10-
<div class="quote mb-4">
11-
{{< summary "docs/concepts/operations/build.md" >}}
12-
<div class="author"><a href="/docs/concepts/operations/build">build</a></div>
13-
</div>
14-
<!--+- end+-->
159
<!--+- `
1610
# Build an app
1711
`+-->

content/docs/app-journey.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Before we set out, you'll need to know the basics of **buildpacks** and how they
2626

2727
### What is a [buildpack][buildpack]?
2828

29-
A buildpack is something you've probably leveraged without knowing, as they're currently
29+
A buildpack is something you've probably used without knowing it, as they're currently
3030
being used in many cloud platforms. A buildpack's job is to gather everything your app needs to build and run,
3131
and it often does this job quickly and quietly.
3232

@@ -35,8 +35,8 @@ code into a runnable app image.
3535

3636
##### Auto-detection
3737

38-
What enables buildpacks to go unnoticed is auto-detection. This happens when a platform sequentially
39-
tests groups of buildpacks against your app's source code. The first group that deems itself fit for your source code
38+
What enables buildpacks to be transparent is auto-detection. This happens when a platform sequentially
39+
tests groups of buildpacks against your app's source code. The first group that successfully detects your source code
4040
will become the selected set of buildpacks for your app. Detection criteria is specific to each buildpack -- for
4141
instance, an **NPM buildpack** might look for a `package.json`, and a **Go buildpack** might look for Go source files.
4242

content/docs/buildpack-author-guide/create-buildpack/_index.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ summary="This is a step-by-step tutorial for creating a Cloud Native Buildpack u
55
+++
66

77
<!--+if false+-->
8-
You can also follow an interactive version of this guide on Katacoda.
9-
10-
{{< katacoda-button href="https://www.katacoda.com/buildpacks/scenarios/buildpack-author-guide" color="green" >}} Learn on Katacoda {{</>}}
118

129
## Prerequisites
1310

content/docs/features/dockerfiles.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
+++
22
title="Dockerfiles"
3-
summary="Dockerfiles can be used to extend base images for buildpacks builds"
3+
summary="Dockerfiles can be used to extend base images for buildpacks builds."
44
+++
55

66
## Why Dockerfiles?

themes/buildpacks/layouts/partials/docs.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ <h1 class="title">{{ .Title | markdownify }}</h1>
4444
</ul>
4545
{{ else }}
4646
<h{{ $headerLvl }}><a href="{{.Permalink}}" class="">{{ .Title | markdownify }}</a></h{{ $headerLvl }}>
47-
<p class="m-1">{{ .Summary | replaceRE "<h[0-9].*>.*</h[0-9]>" "" | plainify | safeHTML }}</p>
47+
<p class="m-1">{{ .Summary | replaceRE "<h[0-9].*>.*</h[0-9]>" "" | markdownify | safeHTML }}</p>
4848

4949
{{ if .Params.include_summaries }}
5050
{{- template "subsection-summary" dict "currentSection" . "depth" (add $depth 1) "titleOnlyAfterDepth" $titleOnlyAfterDepth "maxDepth" $maxDepth -}}

0 commit comments

Comments
 (0)