From bd4ac5b1fc585f6e3dd88c0b2a9b138457dc9402 Mon Sep 17 00:00:00 2001 From: Jiffy Date: Fri, 2 Dec 2022 23:32:17 +0800 Subject: [PATCH] doc fix typo (#398) --- docs/src/components.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/components.md b/docs/src/components.md index 433321d9bf..1e2f939f6c 100644 --- a/docs/src/components.md +++ b/docs/src/components.md @@ -28,10 +28,10 @@ And we use the component like this: {{#include ../../src/test/kotlin/kweb/docs/components.kt:component_usage}} ``` -Components are configured through the extension fuunction parameters, typically through +Components are configured through the extension function parameters, typically through a mixture of: -* [KVal](https://docs.kweb.io/api/kweb-core/kweb.state/-k-val/index.html)s for values that can change +* [KVal](https://docs.kweb.io/api/kweb-core/kweb.state/-k-val/index.html)s for values that can not change * [KVar](https://docs.kweb.io/api/kweb-core/kweb.state/-k-var/index.html)s for values that can change or be changed by the Component * [ObservableList](https://docs.kweb.io/api/kweb-core/kweb.state/-observable-list/index.html)s for lists of values that can change * Other normal classes like **String** for immutable values