From 74b30925188faf47aba3454178a35e7adecbeca1 Mon Sep 17 00:00:00 2001 From: Mathias Buus Date: Fri, 20 Dec 2013 21:01:27 +0100 Subject: [PATCH] fixed typo and links --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0c90ac0..a02cd82 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,12 @@ # tar-stream -tar-stream is a streaming tar parser and generator and nothing else. It is streams2 and operates purely using streams which means easily you can extract/parse tarballs without ever hitting the file system. +tar-stream is a streaming tar parser and generator and nothing else. It is streams2 and operates purely using streams which means you can easily extract/parse tarballs without ever hitting the file system. npm install tar-stream # Usage -tar-stream exposes two streams, `pack` and `extract`. `pack` will create a tarball and `extract` will extract it. +tar-stream exposes two streams, [pack](https://github.com/mafintosh/tar-stream#packing) which creates tarballs and [extract](https://github.com/mafintosh/tar-stream#extracting) which extracts tarballs. To [modify](https://github.com/mafintosh/tar-stream#modifying-existing-tarballs an existing tarball) use both. ## Packing