Skip to content

Commit

Permalink
Updates "Installing" documentation (#149)
Browse files Browse the repository at this point in the history
Closes #149
  • Loading branch information
robotlolita committed Jul 25, 2017
1 parent ecb83ad commit 5817673
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/_docs/v2.0.0/download.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Then install Folktale through npm as well:
Ideally, require only the Folktale modules you'll be using. This helps keeping the overall size smaller. For example, if you're using only the `Maybe` and `compose` functions, don't load the library's entry-point, just those modules:

```js
const Maybe = require('folktale/data/maybe');
const Maybe = require('folktale/maybe');
const compose = require('folktale/core/lambda/compose');

const inc = (x) => x + 1;
Expand Down Expand Up @@ -103,7 +103,7 @@ Then install Folktale through npm as well:
Ideally, require only the Folktale modules you'll be using. This helps keeping the overall size smaller. For example, if you're using only the `Maybe` and `compose` functions, don't load the library's entry-point, just those modules:

```js
const Maybe = require('folktale/data/maybe');
const Maybe = require('folktale/maybe');
const compose = require('folktale/core/lambda/compose');

const inc = (x) => x + 1;
Expand Down

0 comments on commit 5817673

Please sign in to comment.