Skip to content

Commit d0f69ee

Browse files
committed
The VS and dot is seprated
Signed-off-by: YuPengZTE <[email protected]>
1 parent 3aa8abd commit d0f69ee

11 files changed

+18
-18
lines changed

docs/design/access.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ In the Enterprise Profile:
254254
In the Simple Profile:
255255
- There is a single `namespace` used by the single user.
256256

257-
Namespaces versus userAccount vs Labels:
257+
Namespaces versus userAccount vs. Labels:
258258
- `userAccount`s are intended for audit logging (both name and UID should be
259259
logged), and to define who has access to `namespace`s.
260260
- `labels` (see [docs/user-guide/labels.md](../../docs/user-guide/labels.md))

docs/design/admission_control_resource_quota.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ If a third-party wants to track additional resources, it must follow the
121121
resource naming conventions prescribed by Kubernetes. This means the resource
122122
must have a fully-qualified name (i.e. mycompany.org/shinynewresource)
123123

124-
## Resource Requirements: Requests vs Limits
124+
## Resource Requirements: Requests vs. Limits
125125

126126
If a resource supports the ability to distinguish between a request and a limit
127127
for a resource, the quota tracking system will only cost the request value

docs/design/service_accounts.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,9 @@ system external to Kubernetes.
113113

114114
Kubernetes does not dictate how to divide up the space of user identifier
115115
strings. User names can be simple Unix-style short usernames, (e.g. `alice`), or
116-
may be qualified to allow for federated identity (`[email protected]` vs
116+
may be qualified to allow for federated identity (`[email protected]` vs.
117117
`[email protected]`.) Naming convention may distinguish service accounts from
118-
user accounts (e.g. `[email protected]` vs
118+
user accounts (e.g. `[email protected]` vs.
119119
`build-service-account-a3b7f0@foo-namespace.service-accounts.example.com`), but
120120
Kubernetes does not require this.
121121

docs/devel/api-conventions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ resources](../user-guide/working-with-resources.md).*
6363
- [List Operations](#list-operations)
6464
- [Map Operations](#map-operations)
6565
- [Idempotency](#idempotency)
66-
- [Optional vs Required](#optional-vs-required)
66+
- [Optional vs. Required](#optional-vs-required)
6767
- [Defaulting](#defaulting)
6868
- [Late Initialization](#late-initialization)
6969
- [Concurrency Control and Consistency](#concurrency-control-and-consistency)
@@ -658,7 +658,7 @@ exists - instead, it will either return 201 Created or 504 with Reason
658658
allotted, and the client should retry (optionally after the time indicated in
659659
the Retry-After header).
660660

661-
## Optional vs Required
661+
## Optional vs. Required
662662

663663
Fields must be either optional or required.
664664

docs/devel/faster_reviews.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ fast-moving codebase - lock in your changes ASAP, and make merges be someone
109109
else's problem.
110110

111111
Obviously, we want every PR to be useful on its own, so you'll have to use
112-
common sense in deciding what can be a PR vs what should be a commit in a larger
112+
common sense in deciding what can be a PR vs. what should be a commit in a larger
113113
PR. Rule of thumb - if this commit or set of commits is directly related to
114114
Feature-X and nothing else, it should probably be part of the Feature-X PR. If
115115
you can plausibly imagine someone finding value in this commit outside of

docs/proposals/federation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ including discussion of:
444444

445445
1. admission control
446446
1. initial placement of instances of a new
447-
service vs scheduling new instances of an existing service in response
447+
service vs. scheduling new instances of an existing service in response
448448
to auto-scaling
449449
1. rescheduling pods due to failure (response might be
450450
different depending on if it's failure of a node, rack, or whole AZ)

docs/proposals/multi-platform.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ These addons should also be converted to multiple platforms:
227227

228228
### Conflicts
229229

230-
What should we do if there's a conflict between keeping e.g. `linux/ppc64le` builds vs merging a release blocker?
230+
What should we do if there's a conflict between keeping e.g. `linux/ppc64le` builds vs. merging a release blocker?
231231

232232
In fact, we faced this problem while this proposal was being written; in [#25243](https://github.com/kubernetes/kubernetes/pull/25243). It is quite obvious that the release blocker is of higher priority.
233233

docs/proposals/protobuf.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ resembles:
117117
reduce the amount of memory garbage created during serialization and
118118
deserialization.
119119
* More efficient formats like Msgpack were considered, but they only offer
120-
2x speed up vs the 10x observed for Protobuf
120+
2x speed up vs. the 10x observed for Protobuf
121121
* gRPC was considered, but is a larger change that requires more core
122122
refactoring. This approach does not eliminate the possibility of switching
123123
to gRPC in the future.
@@ -356,7 +356,7 @@ deserialization of the remaining bytes into the `runtime.Unknown` type.
356356
## Streaming wire format
357357

358358
While the majority of Kubernetes APIs return single objects that can vary
359-
in type (Pod vs Status, PodList vs Status), the watch APIs return a stream
359+
in type (Pod vs. Status, PodList vs. Status), the watch APIs return a stream
360360
of identical objects (Events). At the time of this writing, this is the only
361361
current or anticipated streaming RESTful protocol (logging, port-forwarding,
362362
and exec protocols use a binary protocol over Websockets or SPDY).

docs/proposals/resource-quota-scoping.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,10 @@ max number of active best-effort pods. In addition, the cluster-admin
7979
requires the ability to scope a quota that limits compute resources to
8080
exclude best-effort pods.
8181

82-
### Ability to quota long-running vs bounded-duration compute resources
82+
### Ability to quota long-running vs. bounded-duration compute resources
8383

8484
The cluster-admin may want to quota end-users separately
85-
based on long-running vs bounded-duration compute resources.
85+
based on long-running vs. bounded-duration compute resources.
8686

8787
For example, a cluster-admin may offer more compute resources
8888
for long running pods that are expected to have a more permanent residence
@@ -94,7 +94,7 @@ request if there is no active traffic. An operator that wants to control
9494
density will offer lower quota limits for batch workloads than web applications.
9595

9696
A classic example is a PaaS deployment where the cluster-admin may
97-
allow a separate budget for pods that run their web application vs pods that
97+
allow a separate budget for pods that run their web application vs. pods that
9898
build web applications.
9999

100100
Another example is providing more quota to a database pod than a
@@ -105,8 +105,8 @@ pod that performs a database migration.
105105
* As a cluster-admin, I want the ability to quota
106106
* compute resource requests
107107
* compute resource limits
108-
* compute resources for terminating vs non-terminating workloads
109-
* compute resources for best-effort vs non-best-effort pods
108+
* compute resources for terminating vs. non-terminating workloads
109+
* compute resources for best-effort vs. non-best-effort pods
110110

111111
## Proposed Change
112112

docs/proposals/runtimeconfig.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ feature's owner(s). The following are suggested conventions:
8282
in each component to toggle on/off.
8383
- Alpha features should be disabled by default. Beta features may
8484
be enabled by default. Refer to docs/devel/api_changes.md#alpha-beta-and-stable-versions
85-
for more detailed guidance on alpha vs beta.
85+
for more detailed guidance on alpha vs. beta.
8686

8787
## Upgrade support
8888

0 commit comments

Comments
 (0)