Skip to content

Commit 21de504

Browse files
committed
fix minor typos in application.md
Signed-off-by: Burak Sekili <[email protected]>
1 parent c3ab1b7 commit 21de504

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/controllers/application.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# The Application
22

3-
The **application** is a Rust application manages a [Controller]. It needs a [[reconciler]] that will be called with entries of your chosen [[object]], and a few dependencies to deal with async streams, error handling, and upstream Kubernetes structs.
3+
The **application** is a Rust application that manages a [Controller]. It needs a [[reconciler]] that will be called with entries of your chosen [[object]], and a few dependencies to deal with async streams, error handling, and upstream Kubernetes structs.
44

5-
This document shows how to create a __minimal__ application, with the builtin `Pod` type as the main object, and a no-op reconciler.
5+
This document shows how to create a __minimal__ application, with the built-in `Pod` type as the main object, and a no-op reconciler.
66

77
## Requirements
88

@@ -75,7 +75,7 @@ For the purposes of this demo we will import [Pod]:
7575
use k8s_openapi::api::core::v1::Pod;
7676
```
7777

78-
### Seting up the controller
78+
### Setting up the controller
7979

8080
This is where we will start defining our `main` and glue everything together:
8181

@@ -121,7 +121,7 @@ To make this reconciler useful, we can reuse the one created in the [[reconciler
121121

122122
## Checkpoint
123123

124-
If you copy-pasted everything above, and fixed imports, you should have a `main.rs` with this:
124+
If you copy-pasted everything above and fixed imports, you should have a `main.rs` with this:
125125

126126
```rust
127127
use std::{sync::Arc, time::Duration};
@@ -202,7 +202,7 @@ If you now edit a pod (via `kubectl edit pod traefik-xxx` and make a change), or
202202

203203
!!! note "Where to Go From Here"
204204

205-
You have created the [[application]] using a trivial reconciler and a builtin object. See the [[object]] and [[reconciler]] chapters to change it into something more useful. The documents under __Concepts__ on the left navigation menu shows the core concepts that are instrumental to help create the right abstraction.
205+
You have created the [[application]] using a trivial reconciler and a built-in object. See the [[object]] and [[reconciler]] chapters to change it into something more useful. The documents under __Concepts__ on the left navigation menu shows the core concepts that are instrumental to help create the right abstraction.
206206

207207
### Useful Dependencies
208208

0 commit comments

Comments
 (0)