Skip to content

Commit 59e81a8

Browse files
authored
Merge pull request #747 from bengadbois/grammar-and-spelling
📖 (nit) fix grammar and spelling typos
2 parents a4043d2 + 0b612c6 commit 59e81a8

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
##@ General
2222

2323
# The help will print out all targets with their descriptions organized bellow their categories. The categories are represented by `##@` and the target descriptions by `##`.
24-
# The awk commands is responsable to read the entire set of makefiles included in this invocation, looking for lines of the file as xyz: ## something, and then pretty-format the target and help. Then, if there's a line with ##@ something, that gets pretty-printed as a category.
24+
# The awk commands is responsible to read the entire set of makefiles included in this invocation, looking for lines of the file as xyz: ## something, and then pretty-format the target and help. Then, if there's a line with ##@ something, that gets pretty-printed as a category.
2525
# More info over the usage of ANSI control characters for terminal formatting: https://en.wikipedia.org/wiki/ANSI_escape_code#SGR_parameters
2626
# More info over awk command: http://linuxcommand.org/lc3_adv_awk.php
2727
.PHONY: help

TMP-LOGGING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ need to adjust how you think about logging a bit.
1111

1212
With structured logging, we associate a *constant* log message with some
1313
variable key-value pairs. For instance, suppose we wanted to log that we
14-
were starting reconciliation on a pod. In the Go standard libary logger,
14+
were starting reconciliation on a pod. In the Go standard library logger,
1515
we might write:
1616

1717
```go

VERSIONING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ leads to API cruft.
241241

242242
Since one of the goals of controller-runtime is to be a friendly and
243243
intuitive API, we want to avoid too much API cruft over time, and
244-
occaisonal breaking changes in major releases help accomplish that goal.
244+
occasional breaking changes in major releases help accomplish that goal.
245245

246246
Furthermore, our dependency on Kubernetes libraries makes this difficult
247247
(see below)

pkg/doc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ through the Watch API.
9999
100100
EventHandler
101101
102-
handler.EventHandler is a argument to Controller.Watch that enqueues reconcile.Requests in response to events.
102+
handler.EventHandler is an argument to Controller.Watch that enqueues reconcile.Requests in response to events.
103103
104104
Example: a Pod Create event from a Source is provided to the eventhandler.EnqueueHandler, which enqueues a
105105
reconcile.Request containing the name / Namespace of the Pod.

0 commit comments

Comments
 (0)