Skip to content

Commit 434fde3

Browse files
committed
Merge remote-tracking branch 'origin/master' into version-3.0.0
2 parents e40a2f9 + f8c5d15 commit 434fde3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/store.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ internal class CalculatorStoreFactory(private val storeFactory: StoreFactory) {
352352

353353
// ...
354354

355-
private object BootstrapperImpl : ReaktiveBootstrapper<Action>() {
355+
private class BootstrapperImpl : ReaktiveBootstrapper<Action>() {
356356
override fun invoke() {
357357
singleFromFunction { (1L..1000000.toLong()).sum() }
358358
.subscribeOn(computationScheduler)
@@ -398,7 +398,7 @@ internal class CalculatorStoreFactory(private val storeFactory: StoreFactory) {
398398

399399
// ...
400400

401-
private object BootstrapperImpl : CoroutineBootstrapper<Action>() {
401+
private class BootstrapperImpl : CoroutineBootstrapper<Action>() {
402402
override fun invoke() {
403403
scope.launch {
404404
val sum = withContext(Dispatchers.Default) { (1L..1000000.toLong()).sum() }

0 commit comments

Comments
 (0)