aboutsummaryrefslogtreecommitdiff
path: root/kvision-modules
diff options
context:
space:
mode:
authorRobert Jaros <rjaros@finn.pl>2020-04-19 00:27:05 +0200
committerRobert Jaros <rjaros@finn.pl>2020-04-19 00:27:05 +0200
commit7ebe97184d70028a96a643dd64b9e56f06e8bf98 (patch)
treee4998f4c415fd24d533603e76db8e9e601d4f332 /kvision-modules
parent20a84bde5aa8813001493d069ecf1f0aea517347 (diff)
downloadkvision-7ebe97184d70028a96a643dd64b9e56f06e8bf98.tar.gz
kvision-7ebe97184d70028a96a643dd64b9e56f06e8bf98.tar.bz2
kvision-7ebe97184d70028a96a643dd64b9e56f06e8bf98.zip
Small fix for observable models builder functions
Diffstat (limited to 'kvision-modules')
-rw-r--r--kvision-modules/kvision-tabulator/src/main/kotlin/pl/treksoft/kvision/tabulator/Tabulator.kt4
1 files changed, 2 insertions, 2 deletions
diff --git a/kvision-modules/kvision-tabulator/src/main/kotlin/pl/treksoft/kvision/tabulator/Tabulator.kt b/kvision-modules/kvision-tabulator/src/main/kotlin/pl/treksoft/kvision/tabulator/Tabulator.kt
index 048c1b1d..0292a0a4 100644
--- a/kvision-modules/kvision-tabulator/src/main/kotlin/pl/treksoft/kvision/tabulator/Tabulator.kt
+++ b/kvision-modules/kvision-tabulator/src/main/kotlin/pl/treksoft/kvision/tabulator/Tabulator.kt
@@ -708,7 +708,7 @@ open class Tabulator<T : Any>(
}
/**
- * A helper function to create a Tabulator object with correct serializer and general redux store.
+ * A helper function to create a Tabulator object with correct serializer and a general observable store.
*/
fun <T : Any, S : Any> create(
store: ObservableState<S>,
@@ -749,7 +749,7 @@ fun <T : Any> Container.tabulator(
}
/**
- * DSL builder extension function for general redux store.
+ * DSL builder extension function for a general observable store.
*/
fun <T : Any, S : Any> Container.tabulator(
store: ObservableState<S>,