Skip to content

Changed the wrapping of a couple of <img> tags so that the 'alt' attr… #77

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions docs/a-fistful-of-monads.html
Original file line number Diff line number Diff line change
Expand Up @@ -1842,8 +1842,9 @@ <h3>A knight's quest</h3>
<a name="monad-laws"></a>
<h2>Monad laws</h2>

<img src="assets/images/a-fistful-of-monads/judgedog.png" alt="the court finds you guilty of peeing all over
everything" class="right" width="343" height="170">
<img src="assets/images/a-fistful-of-monads/judgedog.png"
alt="the court finds you guilty of peeing all over everything" class="right"
width="343" height="170">

<p>
Just like applicative functors, and functors before them, monads come with a few
Expand Down
7 changes: 4 additions & 3 deletions docs/functors-applicative-functors-and-monoids.html
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ <h1>Functors, Applicative Functors and Monoids</h1>
<p>In conclusion, applicative functors aren't just interesting, they're also useful, because they allow us to combine different computations, such as I/O computations, non-deterministic computations, computations that might have failed, etc. by using the applicative style. Just by using <span class="fixed">&lt;$&gt;</span> and <span class="fixed">&lt;*&gt;</span> we can use normal functions to uniformly operate on any number of applicative functors and take advantage of the semantics of each one.</p>
<a name="the-newtype-keyword"></a><h2>The newtype keyword</h2>

<img src="assets/images/functors-applicative-functors-and-monoids/maoi.png" alt="why_ so serious?" class="left" width="107" height="202">
<img src="assets/images/functors-applicative-functors-and-monoids/maoi.png" alt="why so serious?" class="left" width="107" height="202">

<p>
So far, we've learned how to make our own algebraic data types by using the
Expand Down Expand Up @@ -1064,8 +1064,9 @@ <h3><span class="fixed">type</span> vs. <span class="fixed">newtype</span> vs. <

<a name="monoids"></a><h2>Monoids</h2>

<img src="assets/images/functors-applicative-functors-and-monoids/pirateship.png" alt="wow this is pretty much the gayest pirate ship
ever" class="right" width="460" height="417">
<img src="assets/images/functors-applicative-functors-and-monoids/pirateship.png"
alt="wow this is pretty much the gayest pirate ship ever" class="right"
width="460" height="417">

<p>
Type classes in Haskell are used to present an interface for types that have
Expand Down