Skip to content

Commit c44b025

Browse files
committed
Fix typo
1 parent c0a90ca commit c44b025

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<!doctype><html> <head> <title>A purescript-concur-react example</title> </head> <body> <h1>Concur Purescript Examples</h1> <hr> <h2>Hello World</h2> <div id="hello"></div> <hr> <h2>Counter</h2> <div id="counter"></div> <hr> <h2>Login</h2> <div id="login"></div> <hr> <h2>Routing</h2> <div id="routing"></div> <hr> <h2>Counting with Signals!</h2> <div id="signals"></div> <hr> <h2>Editable Tree</h2> <div id="editHeadings"></div> <hr> <h2>Mini Todo List with Signals!</h2> <div id="todos"></div> <hr> <h2>Postfix Calculator</h2> <div id="calc"></div> <hr> <h2>Ajax Demo</h2> <div id="ajax"></div> <hr> <h2>Color</h2> <div id="color"></div> <hr> <h2>Timers</h2> <div id="timers"></div> <hr> <h2>Huge List of 50 thousand buttons</h2> <div id="hugeButtonList"></div> <hr> <h2>Tail Recursion Demo</h2> <div id="tailRecursion"></div> <hr> <script src="purescript-concur.2fa5bebb.js"></script> </body> </html>
1+
<!doctype><html> <head> <title>A purescript-concur-react example</title> </head> <body> <h1>Concur Purescript Examples</h1> <hr> <h2>Hello World</h2> <div id="hello"></div> <hr> <h2>Counter</h2> <div id="counter"></div> <hr> <h2>Login</h2> <div id="login"></div> <hr> <h2>Routing</h2> <div id="routing"></div> <hr> <h2>Counting with Signals!</h2> <div id="signals"></div> <hr> <h2>Editable Tree</h2> <div id="editHeadings"></div> <hr> <h2>Mini Todo List with Signals!</h2> <div id="todos"></div> <hr> <h2>Postfix Calculator</h2> <div id="calc"></div> <hr> <h2>Ajax Demo</h2> <div id="ajax"></div> <hr> <h2>Color</h2> <div id="color"></div> <hr> <h2>Timers</h2> <div id="timers"></div> <hr> <h2>Huge List of 50 thousand buttons</h2> <div id="hugeButtonList"></div> <hr> <h2>Tail Recursion Demo</h2> <div id="tailRecursion"></div> <hr> <script src="purescript-concur.57cae9ff.js"></script> </body> </html>

docs/purescript-concur.2fa5bebb.js renamed to docs/purescript-concur.57cae9ff.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/purescript-concur.2fa5bebb.map renamed to docs/purescript-concur.57cae9ff.map

+1-1
Large diffs are not rendered by default.

examples/Test/TailRec.purs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import Effect.Aff.Class (liftAff)
1111

1212
tailRecDemo :: forall a. Widget HTML a
1313
tailRecDemo = do
14-
D.div'[ D.p' [D.text ("This demo shows that tail recursion is stack safe in Concur. (Even without using tailRecM.")]
14+
D.div'[ D.p' [D.text ("This demo shows that tail recursion is stack safe in Concur (even without using tailRecM).")]
1515
, D.p' [D.text "This widget performs a tail recursive call roughly once every 10 milliseconds, and will never exhaust the stack."]
1616
, do
1717
void $ D.button [P.onClick] [D.text "Start Tail Recursion Demo"]

0 commit comments

Comments
 (0)