Skip to content

Commit

Permalink
Changelog fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
gigobyte committed Sep 25, 2018
1 parent 2107662 commit dda7412
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions site/src/pages/changelog/0.11.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const v011 = () => (
<div>
<Title>Purify v0.11</Title>
<Subtitle>September 20, 2018</Subtitle>
<div>Not sure what purify is? Check out the <Link to="/getting-started">Getting Started</Link> page. The package was renamed from `pure-ts` because of NSFW search results</div>
<div>Not sure what purify is? Check out the <Link to="/getting-started">Getting Started</Link> page. The package was renamed from `pure-ts` because of NSFW search results.</div>

<Topic>NonEmptyList</Topic>
<TopicDescription>
Expand Down Expand Up @@ -83,10 +83,10 @@ if (sometimesValue.isJust()) {

<SyntaxHighlighter language="typescript" style={highlightStyle}>
{` // v0.10
adt.caseOf({ Just: _value => 0, Nothing: () => 0})
adt.caseOf({ Just: value => 0, Nothing: () => 0})
// Now
adt.caseOf({ _ => 0 })`}
adt.caseOf({ _: () => 0 })`}
</SyntaxHighlighter>
</TopicDescription>

Expand Down

0 comments on commit dda7412

Please sign in to comment.