Skip to content

Commit d8fc2ab

Browse files
authored
Merge pull request #23489 from BartoszCki/master
Fix a typo
2 parents d1a9cf8 + 8bcf7bb commit d8fc2ab

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

content/en/docs/concepts/workloads/pods/pod-lifecycle.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ higher-level abstraction, called a
4545
managing the relatively disposable Pod instances.
4646

4747
A given Pod (as defined by a UID) is never "rescheduled" to a different node; instead,
48-
that Pod can be replaced by a new, near-identical Pod, with even the same name i
48+
that Pod can be replaced by a new, near-identical Pod, with even the same name if
4949
desired, but with a different UID.
5050

5151
When something is said to have the same lifetime as a Pod, such as a
@@ -107,7 +107,7 @@ Each state has a specific meaning:
107107

108108
### `Waiting` {#container-state-waiting}
109109

110-
If a container is not in either the `Running` or `Terminated` state, it `Waiting`.
110+
If a container is not in either the `Running` or `Terminated` state, it is `Waiting`.
111111
A container in the `Waiting` state is still running the operations it requires in
112112
order to complete start up: for example, pulling the container image from a container
113113
image registry, or applying {{< glossary_tooltip text="Secret" term_id="secret" >}}
@@ -118,7 +118,7 @@ a Reason field to summarize why the container is in that state.
118118
### `Running` {#container-state-running}
119119

120120
The `Running` status indicates that a container is executing without issues. If there
121-
was a `postStart` hook configured, it has already executed and executed. When you use
121+
was a `postStart` hook configured, it has already executed and finished. When you use
122122
`kubectl` to query a Pod with a container that is `Running`, you also see information
123123
about when the container entered the `Running` state.
124124

0 commit comments

Comments
 (0)