Skip to content

Commit 6eb8a94

Browse files
committed
Flake bump, README.md formatting
- Less emoji - Fix example code
1 parent 74ab26c commit 6eb8a94

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

β€ŽREADME.mdβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
##
3030

31-
**Miso Lynx** 🍜 🐈 is a mobile framework that uses [miso](https://github.com/dmjio/miso) and [LynxJS](https://github.com/lynx-family) to facilitate drawing and API interaction on [iOS](https://www.apple.com/ios/), [Android](https://www.android.com/), and [HarmonyOS](https://device.harmonyos.com/en/) devices. The [Haskell miso project](https://github.com/haskell-miso) is excited to be an open-source technology partner with innovative companies like [ByteDance](https://www.bytedance.com/en/) πŸ‡¨πŸ‡³ 🦾 , creators of [LynxJS](https://lynxjs.org/), to advance native mobile app development in the functional programming space.
31+
**Miso Lynx** 🍜 🐈 is a mobile framework that uses [miso](https://github.com/dmjio/miso) and [LynxJS](https://github.com/lynx-family) to facilitate drawing and API interaction on [iOS](https://www.apple.com/ios/), [Android](https://www.android.com/), and [HarmonyOS](https://device.harmonyos.com/en/) devices. The [Haskell miso project](https://github.com/haskell-miso) is excited to be an open-source technology partner with innovative companies like [ByteDance](https://www.bytedance.com/en/), creators of [LynxJS](https://lynxjs.org/), to advance native mobile app development in the functional programming space.
3232

3333
## Why Lynx
3434

@@ -146,7 +146,7 @@ data Action
146146
-----------------------------------------------------------------------------
147147
-- | Entry point for a miso application
148148
main :: IO ()
149-
main = run (lynx lynxEvents counterComponent)
149+
main = lynx lynxEvents counterComponent
150150
-----------------------------------------------------------------------------
151151
counterComponent :: App Model Action
152152
counterComponent = component (Model 0) updateModel viewModel

β€Žexamples/counter/Main.hsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ counterComponent = component (Model 0) updateModel viewModel
3535
-----------------------------------------------------------------------------
3636
updateModel
3737
:: Action
38-
-> Transition Model Action
38+
-> Effect ROOT Model Action
3939
updateModel = \case
4040
AddOne ->
4141
value += 1

β€Žflake.lockβ€Ž

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
Β (0)