Skip to content

Commit 828dc2d

Browse files
author
Nate Ridderman
authored
Update CoreConcepts.md
1 parent 8379b5e commit 828dc2d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

website/docs/introduction/CoreConcepts.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ data class AppState(
2020
This object is like a “model” except all fields are vals. This is so that different parts of the
2121
code can’t change the state arbitrarily, causing hard-to-reproduce bugs.
2222

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
23+
To change something in the state, you need to dispatch an action. An action is a plain data Kotlin
24+
class (notice how we don’t introduce any magic?) that describes what happened. Here are a few
2525
example actions:
2626

2727
```kotlin

0 commit comments

Comments
 (0)