You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by bo...@apache.org on 2017/02/04 16:14:31 UTC

[4/7] commons-compress git commit: too much copy/paste

too much copy/paste


Project: http://git-wip-us.apache.org/repos/asf/commons-compress/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-compress/commit/2473e873
Tree: http://git-wip-us.apache.org/repos/asf/commons-compress/tree/2473e873
Diff: http://git-wip-us.apache.org/repos/asf/commons-compress/diff/2473e873

Branch: refs/heads/master
Commit: 2473e8739a99f13f26d884895651dd85b413d2dc
Parents: 4393041
Author: Stefan Bodewig <bo...@apache.org>
Authored: Sat Feb 4 17:07:28 2017 +0100
Committer: Stefan Bodewig <bo...@apache.org>
Committed: Sat Feb 4 17:07:28 2017 +0100

----------------------------------------------------------------------
 src/site/xdoc/examples.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-compress/blob/2473e873/src/site/xdoc/examples.xml
----------------------------------------------------------------------
diff --git a/src/site/xdoc/examples.xml b/src/site/xdoc/examples.xml
index 002e9a7..e0b2e8b 100644
--- a/src/site/xdoc/examples.xml
+++ b/src/site/xdoc/examples.xml
@@ -701,7 +701,7 @@ zIn.close();
           certainly add exception handling and make sure all streams
           get closed properly):</p>
 <source><![CDATA[
-FileInputStream fin = new FileInputStream("archive.tar.sz");
+FileInputStream fin = new FileInputStream("archive.tar.lz4");
 BufferedInputStream in = new BufferedInputStream(fin);
 FileOutputStream out = new FileOutputStream("archive.tar");
 FramedLZ4CompressorInputStream zIn = new FramedLZ4CompressorInputStream(in);