From dd25dee6b3e26691ffaa910c3a188c6bdd652631 Mon Sep 17 00:00:00 2001 From: clux Date: Mon, 16 Oct 2023 20:02:33 +0100 Subject: [PATCH] typo; s/tthe/the - closes #46 Signed-off-by: clux --- docs/controllers/object.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/controllers/object.md b/docs/controllers/object.md index b80cab2..e865e10 100644 --- a/docs/controllers/object.md +++ b/docs/controllers/object.md @@ -234,7 +234,7 @@ let ar = ApiResource::erase::(&()); Controller::new_with(api, watcher::Config::default(), &ar) ``` -We have to recursively re-implement every part of [Pod] that we care about, but we automatically drop every field except tthe ones we defined. In this case we do not gain version independence (due to re-using pinned type-information), but you could gain this by using api [discovery]. +We have to recursively re-implement every part of [Pod] that we care about, but we automatically drop every field except the ones we defined. In this case we do not gain version independence (due to re-using pinned type-information), but you could gain this by using api [discovery]. This is functionally similar way to deriving `CustomResource` on an incomplete struct, but using (possibly) dynamic api parameters.