Skip to content

Commit

Permalink
Minor copy edits courtesy of a review by @alvin-huang
Browse files Browse the repository at this point in the history
  • Loading branch information
R. Tyler Croy committed Dec 2, 2016
1 parent 4a80581 commit 190b56e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions content/doc/book/pipeline/index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -123,10 +123,10 @@ image::/images/pipeline/realworld-pipeline-flow.png[title="Pipeline Flow", 800]

[[step]]
Step::
A single task, fundamentally steps tell Jenkins _what_ to do. For example, in
order to instruct Jenkins to execute the shell command `make`, the `sh`
step would be used: `sh 'make'`.
When a plugin extends to Pipeline DSL, that typically means the plugin has
A single task; fundamentally steps tell Jenkins _what_ to do. In
order to execute the shell command `make`, the `sh`
step would be used. for example `sh 'make'`.
When a plugin extends the Pipeline DSL, that typically means the plugin has
implemented a new _step_.

[[node]]
Expand All @@ -148,8 +148,8 @@ for more information.

[[stage]]
Stage::
A "stage" is a step for defining a conceptually distinct subset of the
`stage` is a step for defining a conceptually distinct subset of the
entire Pipeline, for example: "Build", "Test", and "Deploy". While stages
no bearing on the execution of the Pipeline, they are used by many plugins
which visualize or present Jenkins Pipeline status/progress.
have no bearing on the execution of the Pipeline, they are used by many
plugins to visualize or present Jenkins Pipeline status/progress.
footnoteref:[blueocean,link:/projects/blueocean[Blue Ocean], link:https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Stage+View+Plugin[Pipeline Stage View plugin]]

0 comments on commit 190b56e

Please sign in to comment.