Skip to content

Commit 593a5d3

Browse files
authored
Merge pull request #34071 from lostick/fix-typos-content-docs
Fix typos in tasks docs
2 parents 6ee58cd + cfb8971 commit 593a5d3

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

content/en/docs/reference/kubectl/cheatsheet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ kubectl patch deployment valid-deployment --type json -p='[{"op": "remove", "
280280
# Add a new element to a positional array
281281
kubectl patch sa default --type='json' -p='[{"op": "add", "path": "/secrets/1", "value": {"name": "whatever" } }]'
282282

283-
# Update a deployment's replicas count by patching it's scale subresource
283+
# Update a deployment's replica count by patching its scale subresource
284284
kubectl patch deployment nginx-deployment --subresource='scale' --type='merge' -p '{"spec":{"replicas":2}}'
285285
```
286286

content/en/docs/tasks/debug/debug-cluster/local-debugging.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ This document describes using `telepresence` to develop and debug services runni
2424

2525
## Connecting your local machine to a remote Kubernetes cluster
2626

27-
After installing `telepresence`, run `telepresence connect` to launch it's Daemon and connect your local workstation to the cluster.
27+
After installing `telepresence`, run `telepresence connect` to launch its Daemon and connect your local workstation to the cluster.
2828

2929
```
3030
$ telepresence connect

content/en/docs/tasks/extend-kubernetes/custom-resources/custom-resource-definition-versioning.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ spec:
444444
served: true
445445
# One and only one version must be marked as the storage version.
446446
storage: true
447-
# Each version can define it's own schema when there is no top-level
447+
# Each version can define its own schema when there is no top-level
448448
# schema is defined.
449449
schema:
450450
openAPIV3Schema:
@@ -512,7 +512,7 @@ spec:
512512
served: true
513513
# One and only one version must be marked as the storage version.
514514
storage: true
515-
# Each version can define it's own schema when there is no top-level
515+
# Each version can define its own schema when there is no top-level
516516
# schema is defined.
517517
schema:
518518
openAPIV3Schema:

content/en/docs/tasks/run-application/horizontal-pod-autoscale.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ scaling in that direction.
400400
### Stabilization window
401401

402402
The stabilization window is used to restrict the [flapping](#flapping) of
403-
replicas count when the metrics used for scaling keep fluctuating. The autoscaling algorithm
403+
replica count when the metrics used for scaling keep fluctuating. The autoscaling algorithm
404404
uses this window to infer a previous desired state and avoid unwanted changes to workload
405405
scale.
406406

0 commit comments

Comments
 (0)