We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8379b5e commit 828dc2dCopy full SHA for 828dc2d
website/docs/introduction/CoreConcepts.md
@@ -20,8 +20,8 @@ data class AppState(
20
This object is like a “model” except all fields are vals. This is so that different parts of the
21
code can’t change the state arbitrarily, causing hard-to-reproduce bugs.
22
23
-To change something in the state, you need to dispatch an action. An action is a plain JavaScript
24
-object (notice how we don’t introduce any magic?) that describes what happened. Here are a few
+To change something in the state, you need to dispatch an action. An action is a plain data Kotlin
+class (notice how we don’t introduce any magic?) that describes what happened. Here are a few
25
example actions:
26
27
```kotlin
0 commit comments