Skip to content

Commit

Permalink
Add 'web' to tagline.
Browse files Browse the repository at this point in the history
  • Loading branch information
dmjio committed Nov 19, 2024
1 parent 9d15de0 commit f0bba48
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<a href="https://haskell-miso.org">
<img width=10% src="https://em-content.zobj.net/thumbs/240/apple/325/steaming-bowl_1f35c.png">
</a>
<p align="center">A <i>tasty</i> <a href="https://www.haskell.org/"><strong>Haskell</strong></a> front-end framework</p>
<p align="center">A <i>tasty</i> <a href="https://www.haskell.org/"><strong>Haskell</strong></a> front-end web framework</p>
</p>

<p align="center">
Expand Down
4 changes: 2 additions & 2 deletions examples/haskell-miso.org/server/Main.hs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ misoManifest =
, start_url = "."
, display = "standalone"
, theme_color = "#00d1b2"
, description = "A tasty Haskell front-end framework"
, description = "A tasty Haskell front-end web framework"
}

handle404 :: Application
Expand All @@ -92,7 +92,7 @@ instance L.ToHtml a => L.ToHtml (Wrapper a) where
L.doctype_
L.html_ [ L.lang_ "en" ] $ do
L.head_ $ do
L.title_ "Miso: A tasty Haskell front-end framework"
L.title_ "Miso: A tasty Haskell front-end web framework"
L.link_ [ L.rel_ "stylesheet"
, L.href_ "https://cdnjs.cloudflare.com/ajax/libs/github-fork-ribbon-css/0.2.2/gh-fork-ribbon.min.css"
]
Expand Down
2 changes: 1 addition & 1 deletion examples/haskell-miso.org/shared/Common.hs
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ home = template v
, rel_ "noopener"
, target_ "_blank"][
strong_ [] [text "Haskell" ]]
, text " front-end framework"
, text " front-end web framework"
]
]

Expand Down
2 changes: 1 addition & 1 deletion examples/miso-examples.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ copyright: Copyright (c) 2017-2020 David M. Johnson
bug-reports: https://github.com/dmjio/miso/issues
build-type: Simple
cabal-version: 1.22
synopsis: A tasty Haskell front-end framework
synopsis: A tasty Haskell front-end web framework
description: Examples for miso
license: BSD3
license-file: LICENSE
Expand Down
2 changes: 1 addition & 1 deletion miso.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ bug-reports: https://github.com/dmjio/miso/issues
build-type: Simple
extra-source-files: README.md
cabal-version: 1.22
synopsis: A tasty Haskell front-end framework
synopsis: A tasty Haskell front-end web framework
description:
Miso is a small, production-ready, "isomorphic" Haskell front-end framework featuring a virtual-dom, recursive diffing / patching algorithm, event delegation, event batching, SVG, Server-sent events, Websockets, type-safe servant-style routing and an extensible Subscription-based subsystem. Inspired by Elm, Redux and Bobril. Miso is pure by default, but side effects (like XHR) can be introduced into the system via the Effect data type. Miso makes heavy use of the GHCJS FFI and therefore has minimal dependencies.

Expand Down

0 comments on commit f0bba48

Please sign in to comment.