Skip to content

Commit fede241

Browse files
authored
fix minor typos in the intro page
Signed-off-by: Burak Sekili <[email protected]>
1 parent 5505d96 commit fede241

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/controllers/intro.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ See the [[object]] document for how to use the various types.
4646

4747
## The Reconciler
4848

49-
The reconconciler is the part of the controller that ensures the world is up to date.
49+
The reconciler is the part of the controller that ensures the world is up to date.
5050

51-
It takes the form of an `async fn` taking the object along with some context, and performs the alignment between the state of world and the `object`.
51+
It takes the form of an `async fn` taking the object along with some context, and performs the alignment between the state of the world and the `object`.
5252

5353
In its simplest form, this is what a reconciler (that does nothing) looks like:
5454

@@ -81,7 +81,7 @@ The core features inside the application are:
8181

8282
The system must be **fault-tolerant**, and thus must be able to recover from **crashes**, **downtime**, and resuming even having **missed messages**.
8383

84-
Setting up a blank controller in rust satisfying these constraints is fairly simple, and can be done with minimal boilerplate (no generated files need be inlined in your project).
84+
Setting up a blank controller in rust satisfying these constraints is fairly simple, and can be done with minimal boilerplate (no generated files need to be inlined in your project).
8585

8686
See the [[application]] document for the high-level details.
8787

@@ -99,7 +99,7 @@ The terminology between **controllers** and **operators** are quite similar:
9999
100100
Which is further reworded now under their new [agglomerate banner](https://cloud.redhat.com/learn/topics/operators).
101101

102-
They key **differences** between the two is that **operators** generally a specific type of controller, sometimes more than one in a single application. To be classified as an operator, a controller would at the very least need to:
102+
The key **difference** between the two is that **operators** are generally a specific type of controller, sometimes more than one in a single application. To be classified as an operator, a controller would at the very least need to:
103103

104104
- manage custom resource definition(s)
105105
- maintain single app focus

0 commit comments

Comments
 (0)