aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax Ogden <max@maxogden.com>2016-02-28 17:08:01 -0800
committerMax Ogden <max@maxogden.com>2016-02-28 17:08:01 -0800
commitf425bb3e63205a53ae91674b95ff61b485f80fe1 (patch)
treebaa3bcafa561121574217ae44372c07e8cf7d871
parentfcb601bd539e407814b9f273da9245c6a1d3f083 (diff)
downloaddat-docs-f425bb3e63205a53ae91674b95ff61b485f80fe1.tar.gz
dat-docs-f425bb3e63205a53ae91674b95ff61b485f80fe1.zip
typo
-rw-r--r--diy-dat.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/diy-dat.md b/diy-dat.md
index 3b3263b..5ce9118 100644
--- a/diy-dat.md
+++ b/diy-dat.md
@@ -2,7 +2,7 @@
This document shows how to write your own compatible `dat` client using node modules.
-The three essential node modules are called [hyperdrive](https://npmjs.org/hyperdrive), [discovery-swarm](https://npmjs.org/discovery-swarm) and [level](https://npmjs.org/level). Hyperdrive does file synchronization and versioning, discovery-swarm does peer discovery over local networks and the Internet, and level provides a local LevelDB for storing metadata. More details are available in [How Dat Works](how-dat-works.md). The [dat](https://npmjs.org/dat) module itself is just some code that combines these two modules and wraps them in a command-line API.
+The three essential node modules are called [hyperdrive](https://npmjs.org/hyperdrive), [discovery-swarm](https://npmjs.org/discovery-swarm) and [level](https://npmjs.org/level). Hyperdrive does file synchronization and versioning, discovery-swarm does peer discovery over local networks and the Internet, and level provides a local LevelDB for storing metadata. More details are available in [How Dat Works](how-dat-works.md). The [dat](https://npmjs.org/dat) module itself is just some code that combines these modules and wraps them in a command-line API.
Here's the minimal code needed to download data from a dat: