diff options
author | Robert Jaros <rjaros@finn.pl> | 2020-04-19 00:27:05 +0200 |
---|---|---|
committer | Robert Jaros <rjaros@finn.pl> | 2020-04-19 00:27:05 +0200 |
commit | 7ebe97184d70028a96a643dd64b9e56f06e8bf98 (patch) | |
tree | e4998f4c415fd24d533603e76db8e9e601d4f332 /kvision-modules | |
parent | 20a84bde5aa8813001493d069ecf1f0aea517347 (diff) | |
download | kvision-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.kt | 4 |
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>, |