Skip to content

Commit b961bb4

Browse files
Fix typos (kyverno#2860)
* fix typo in README Signed-off-by: Kushal Beniwal <[email protected]> * fix typo in CODE_OF_CONDUCT Signed-off-by: Kushal Beniwal <[email protected]> * fix typo in CONTRIBUTING Signed-off-by: Kushal Beniwal <[email protected]> * fix typo in comment Signed-off-by: Kushal Beniwal <[email protected]> * fix typo in comment Signed-off-by: Kushal Beniwal <[email protected]>
1 parent f698276 commit b961bb4

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

CODE_OF_CONDUCT.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ when an individual is representing the project or its community.
3333

3434
Instances of abusive, harassing, or otherwise unacceptable behavior in Kubernetes may be reported by contacting the project maintainer(s).
3535

36-
This Code of Conduct is adapted from the the [CNCF Code of Conduct](https://github.com/cncf/foundation/blob/master/code-of-conduct.md) and the [Contributor Covenant](https://www.contributor-covenant.org/), [version 1.2.0](https://www.contributor-covenant.org/version/1/2/0/code-of-conduct/).
36+
This Code of Conduct is adapted from the [CNCF Code of Conduct](https://github.com/cncf/foundation/blob/master/code-of-conduct.md) and the [Contributor Covenant](https://www.contributor-covenant.org/), [version 1.2.0](https://www.contributor-covenant.org/version/1/2/0/code-of-conduct/).

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ git add .
7676
git commit -s -m "Commit message"
7777
```
7878

79-
The `-s` signifies that you have signed off the the commit.
79+
The `-s` signifies that you have signed off the commit.
8080

8181
Go ahead and push your changes to GitHub using this command.
8282

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Thanks for your interest in contributing to Kyverno! Here are some steps to help
4848

4949
✔ Check out the [good first issues](https://github.com/kyverno/kyverno/labels/good%20first%20issue) list. Add a comment with `/assign` to request assignment of the issue.
5050

51-
Checkout out the Kyverno [Community page](https://kyverno.io/community/) for other ways to get involved.
51+
Check out the Kyverno [Community page](https://kyverno.io/community/) for other ways to get involved.
5252

5353
## Contributors
5454

pkg/engine/response/status.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const (
1515
RuleStatusPass RuleStatus = iota
1616
// Fail indicates that the resource does not meet the policy rule requirements
1717
RuleStatusFail
18-
// Warn indicates that the the resource does not meet the policy rule requirements, but the policy is not scored
18+
// Warn indicates that the resource does not meet the policy rule requirements, but the policy is not scored
1919
RuleStatusWarn
2020
// Error indicates that the policy rule could not be evaluated due to a processing error, for
2121
// example when a variable cannot be resolved in the policy rule definition. Note that variables

pkg/policymutation/policymutation.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,7 @@ func generateRulePatches(policy kyverno.ClusterPolicy, controllers string, log l
581581
}
582582

583583
// the kyvernoRule holds the temporary kyverno rule struct
584-
// each field is a pointer to the the actual object
584+
// each field is a pointer to the actual object
585585
// when serializing data, we would expect to drop the omitempty key
586586
// otherwise (without the pointer), it will be set to empty value
587587
// - an empty struct in this case, some may fail the schema validation

0 commit comments

Comments
 (0)