Skip to content

Commit 5e30766

Browse files
committed
replace docs and make lib an api dependency import in lib-threadsafe
1 parent 667db0c commit 5e30766

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

lib-threadsafe/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ kotlin {
3838
commonMain {
3939
dependencies {
4040
implementation kotlin("stdlib-common")
41-
implementation project(":lib")
41+
api project(":lib")
4242
}
4343
}
4444
commonTest {

lib/src/commonMain/kotlin/org/reduxkotlin/CreateStore.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ import org.reduxkotlin.utils.isPlainObject
55
/**
66
* Creates a NON-THREADSAFE Redux store that holds the state tree.
77
* If your application needs thread-safety access to store consider [createThreadSafeStore]
8-
* see: TODO link to docs
8+
* see:
9+
* https://reduxkotlin.org/api/createThreadSafeStore
10+
* https://www.reduxkotlin.org/introduction/threading
911
*
1012
* The only way to change the data in the store is to call `dispatch()` on it.
1113
*

0 commit comments

Comments
 (0)